Title: [211276] trunk/Source/_javascript_Core
- Revision
- 211276
- Author
- [email protected]
- Date
- 2017-01-27 00:26:40 -0800 (Fri, 27 Jan 2017)
Log Message
Unreviewed. Fix GTK+ debug build after r211247.
* heap/GCAssertions.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (211275 => 211276)
--- trunk/Source/_javascript_Core/ChangeLog 2017-01-27 08:02:33 UTC (rev 211275)
+++ trunk/Source/_javascript_Core/ChangeLog 2017-01-27 08:26:40 UTC (rev 211276)
@@ -1,3 +1,9 @@
+2017-01-27 Carlos Garcia Campos <[email protected]>
+
+ Unreviewed. Fix GTK+ debug build after r211247.
+
+ * heap/GCAssertions.h:
+
2017-01-26 Keith Miller <[email protected]>
classInfo should take a VM so it is not materialized from the object on each call
Modified: trunk/Source/_javascript_Core/heap/GCAssertions.h (211275 => 211276)
--- trunk/Source/_javascript_Core/heap/GCAssertions.h 2017-01-27 08:02:33 UTC (rev 211275)
+++ trunk/Source/_javascript_Core/heap/GCAssertions.h 2017-01-27 08:26:40 UTC (rev 211276)
@@ -37,7 +37,7 @@
#define ASSERT_GC_OBJECT_INHERITS(object, classInfo) do {\
ASSERT_GC_OBJECT_LOOKS_VALID(object); \
- RELEASE_ASSERT(object->inherits(*object->JSCell::vm(), classInfo)); \
+ RELEASE_ASSERT(object->inherits(*object->JSC::JSCell::vm(), classInfo)); \
} while (0)
// Used to avoid triggering -Wundefined-bool-conversion.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes