Title: [240703] trunk/Source/_javascript_Core
Revision
240703
Author
[email protected]
Date
2019-01-29 21:03:02 -0800 (Tue, 29 Jan 2019)

Log Message

Remove default constructor from LLIntPrototypeLoadAdaptiveStructureWatchpoint
https://bugs.webkit.org/show_bug.cgi?id=194000
<rdar://problem/47642894>

Reviewed by Mark Lam.

default constructor is unused and
LLIntPrototypeLoadAdaptiveStructureWatchpoint has a reference
data member which causes sadness.

* bytecode/LLIntPrototypeLoadAdaptiveStructureWatchpoint.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (240702 => 240703)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-30 02:55:03 UTC (rev 240702)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-30 05:03:02 UTC (rev 240703)
@@ -1,3 +1,17 @@
+2019-01-29  Keith Miller  <[email protected]>
+
+        Remove default constructor from LLIntPrototypeLoadAdaptiveStructureWatchpoint
+        https://bugs.webkit.org/show_bug.cgi?id=194000
+        <rdar://problem/47642894>
+
+        Reviewed by Mark Lam.
+
+        default constructor is unused and
+        LLIntPrototypeLoadAdaptiveStructureWatchpoint has a reference
+        data member which causes sadness.
+
+        * bytecode/LLIntPrototypeLoadAdaptiveStructureWatchpoint.h:
+
 2019-01-29  Ross Kirsling  <[email protected]>
 
         Remove FIXME for Annex B.3.5's "for-of var" subcase.

Modified: trunk/Source/_javascript_Core/bytecode/LLIntPrototypeLoadAdaptiveStructureWatchpoint.h (240702 => 240703)


--- trunk/Source/_javascript_Core/bytecode/LLIntPrototypeLoadAdaptiveStructureWatchpoint.h	2019-01-30 02:55:03 UTC (rev 240702)
+++ trunk/Source/_javascript_Core/bytecode/LLIntPrototypeLoadAdaptiveStructureWatchpoint.h	2019-01-30 05:03:02 UTC (rev 240703)
@@ -33,7 +33,6 @@
 
 class LLIntPrototypeLoadAdaptiveStructureWatchpoint : public Watchpoint {
 public:
-    LLIntPrototypeLoadAdaptiveStructureWatchpoint() = default;
     LLIntPrototypeLoadAdaptiveStructureWatchpoint(const ObjectPropertyCondition&, OpGetById::Metadata&);
 
     void install(VM&);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to