Title: [159116] trunk/Source/_javascript_Core
Revision
159116
Author
commit-qu...@webkit.org
Date
2013-11-12 09:38:07 -0800 (Tue, 12 Nov 2013)

Log Message

Fix undefined reference issues in _javascript_Core build.
https://bugs.webkit.org/show_bug.cgi?id=124152

Patch by Balazs Kilvady <kilva...@homejinni.com> on 2013-11-12
Reviewed by Michael Saboff.

Missing includes added.

* runtime/SymbolTable.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159115 => 159116)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-12 17:33:10 UTC (rev 159115)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-12 17:38:07 UTC (rev 159116)
@@ -1,3 +1,14 @@
+2013-11-12  Balazs Kilvady  <kilva...@homejinni.com>
+
+        Fix undefined reference issues in _javascript_Core build.
+        https://bugs.webkit.org/show_bug.cgi?id=124152
+
+        Reviewed by Michael Saboff.
+
+        Missing includes added.
+
+        * runtime/SymbolTable.cpp:
+
 2013-11-12  Alexandru Chiculita  <ach...@adobe.com>
 
         Web Inspector: Crash when closing the Inspector while debugging an exception inside a breakpoint condition.

Modified: trunk/Source/_javascript_Core/runtime/SymbolTable.cpp (159115 => 159116)


--- trunk/Source/_javascript_Core/runtime/SymbolTable.cpp	2013-11-12 17:33:10 UTC (rev 159115)
+++ trunk/Source/_javascript_Core/runtime/SymbolTable.cpp	2013-11-12 17:38:07 UTC (rev 159116)
@@ -29,6 +29,10 @@
 #include "config.h"
 #include "SymbolTable.h"
 
+#include "JSCellInlines.h"
+#include "JSDestructibleObject.h"
+#include "SlotVisitorInlines.h"
+
 namespace JSC {
 
 const ClassInfo SharedSymbolTable::s_info = { "SharedSymbolTable", 0, 0, 0, CREATE_METHOD_TABLE(SharedSymbolTable) };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to