Title: [246572] trunk/Source/_javascript_Core
Revision
246572
Author
keith_mil...@apple.com
Date
2019-06-18 15:24:44 -0700 (Tue, 18 Jun 2019)

Log Message

Unreviewed, fix signature of currentWeakRefVersion to return an uintptr_t.

* runtime/VM.h:
(JSC::VM::currentWeakRefVersion const):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (246571 => 246572)


--- trunk/Source/_javascript_Core/ChangeLog	2019-06-18 22:01:02 UTC (rev 246571)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-06-18 22:24:44 UTC (rev 246572)
@@ -1,3 +1,10 @@
+2019-06-18  Keith Miller  <keith_mil...@apple.com>
+
+        Unreviewed, fix signature of currentWeakRefVersion to return an uintptr_t.
+
+        * runtime/VM.h:
+        (JSC::VM::currentWeakRefVersion const):
+
 2019-06-18  Justin Michaud  <justin_mich...@apple.com>
 
         [WASM-References] Add support for multiple tables

Modified: trunk/Source/_javascript_Core/runtime/VM.h (246571 => 246572)


--- trunk/Source/_javascript_Core/runtime/VM.h	2019-06-18 22:01:02 UTC (rev 246571)
+++ trunk/Source/_javascript_Core/runtime/VM.h	2019-06-18 22:24:44 UTC (rev 246572)
@@ -890,7 +890,7 @@
     JS_EXPORT_PRIVATE void drainMicrotasks();
     void setOnEachMicrotaskTick(WTF::Function<void(VM&)>&& func) { m_onEachMicrotaskTick = WTFMove(func); }
     void finalizeSynchronousJSExecution() { ASSERT(currentThreadIsHoldingAPILock()); m_currentWeakRefVersion++; }
-    uint64_t currentWeakRefVersion() const { return m_currentWeakRefVersion; }
+    uintptr_t currentWeakRefVersion() const { return m_currentWeakRefVersion; }
 
     void setGlobalConstRedeclarationShouldThrow(bool globalConstRedeclarationThrow) { m_globalConstRedeclarationShouldThrow = globalConstRedeclarationThrow; }
     ALWAYS_INLINE bool globalConstRedeclarationShouldThrow() const { return m_globalConstRedeclarationShouldThrow; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to