Title: [276260] trunk/Source/WebCore
Revision
276260
Author
[email protected]
Date
2021-04-19 10:08:31 -0700 (Mon, 19 Apr 2021)

Log Message

CSSValuePool should be non-copyable
https://bugs.webkit.org/show_bug.cgi?id=224764

Reviewed by Alan Bujtas.

* css/CSSValuePool.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (276259 => 276260)


--- trunk/Source/WebCore/ChangeLog	2021-04-19 16:59:03 UTC (rev 276259)
+++ trunk/Source/WebCore/ChangeLog	2021-04-19 17:08:31 UTC (rev 276260)
@@ -1,3 +1,12 @@
+2021-04-19  Antti Koivisto  <[email protected]>
+
+        CSSValuePool should be non-copyable
+        https://bugs.webkit.org/show_bug.cgi?id=224764
+
+        Reviewed by Alan Bujtas.
+
+        * css/CSSValuePool.h:
+
 2021-04-19  Zalan Bujtas  <[email protected]>
 
         [LFC] The layout containment box establishes an absolute positioning containing block and a fixed positioning containing block

Modified: trunk/Source/WebCore/css/CSSValuePool.h (276259 => 276260)


--- trunk/Source/WebCore/css/CSSValuePool.h	2021-04-19 16:59:03 UTC (rev 276259)
+++ trunk/Source/WebCore/css/CSSValuePool.h	2021-04-19 17:08:31 UTC (rev 276260)
@@ -77,6 +77,7 @@
 
 class CSSValuePool {
     WTF_MAKE_FAST_ALLOCATED;
+    WTF_MAKE_NONCOPYABLE(CSSValuePool);
 public:
     CSSValuePool();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to