Title: [248518] branches/safari-608.1-branch/Source/_javascript_Core
Revision
248518
Author
bshaf...@apple.com
Date
2019-08-11 07:30:14 -0700 (Sun, 11 Aug 2019)

Log Message

Apply patch. rdar://problem/54171879

Modified Paths


Diff

Modified: branches/safari-608.1-branch/Source/_javascript_Core/ChangeLog (248517 => 248518)


--- branches/safari-608.1-branch/Source/_javascript_Core/ChangeLog	2019-08-11 11:02:01 UTC (rev 248517)
+++ branches/safari-608.1-branch/Source/_javascript_Core/ChangeLog	2019-08-11 14:30:14 UTC (rev 248518)
@@ -1,3 +1,13 @@
+2019-08-11  Babak Shafiei  <bshaf...@apple.com>
+
+        Apply patch. rdar://problem/54171879
+
+    2019-08-11  Maciej Stachowiak  <m...@apple.com>
+
+            Branch build fix for r248494
+
+            * runtime/ClassInfo.h: METHOD_TABLE_ENTRY was called WTF_METHOD_TABLE_ENTRY on the branch.
+
 2019-08-10  Babak Shafiei  <bshaf...@apple.com>
 
         Cherry-pick r248494. rdar://problem/54171879

Modified: branches/safari-608.1-branch/Source/_javascript_Core/runtime/ClassInfo.h (248517 => 248518)


--- branches/safari-608.1-branch/Source/_javascript_Core/runtime/ClassInfo.h	2019-08-11 11:02:01 UTC (rev 248517)
+++ branches/safari-608.1-branch/Source/_javascript_Core/runtime/ClassInfo.h	2019-08-11 14:30:14 UTC (rev 248518)
@@ -80,7 +80,7 @@
     GetOwnPropertySlotByIndexFunctionPtr WTF_METHOD_TABLE_ENTRY(getOwnPropertySlotByIndex);
 
     using DoPutPropertySecurityCheckFunctionPtr = void (*)(JSObject*, ExecState*, PropertyName, PutPropertySlot&);
-    DoPutPropertySecurityCheckFunctionPtr METHOD_TABLE_ENTRY(doPutPropertySecurityCheck);
+    DoPutPropertySecurityCheckFunctionPtr WTF_METHOD_TABLE_ENTRY(doPutPropertySecurityCheck);
 
     using ToThisFunctionPtr = JSValue (*)(JSCell*, ExecState*, ECMAMode);
     ToThisFunctionPtr WTF_METHOD_TABLE_ENTRY(toThis);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to