Title: [127214] trunk/Source/_javascript_Core
- Revision
- 127214
- Author
- [email protected]
- Date
- 2012-08-30 17:00:46 -0700 (Thu, 30 Aug 2012)
Log Message
Try to fix the Qt build: add some #includes that, for some reason, only the Qt linker requires.
* runtime/BooleanObject.cpp:
* runtime/ErrorInstance.cpp:
* runtime/NameInstance.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (127213 => 127214)
--- trunk/Source/_javascript_Core/ChangeLog 2012-08-30 23:49:37 UTC (rev 127213)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-08-31 00:00:46 UTC (rev 127214)
@@ -1,5 +1,13 @@
2012-08-30 Geoffrey Garen <[email protected]>
+ Try to fix the Qt build: add some #includes that, for some reason, only the Qt linker requires.
+
+ * runtime/BooleanObject.cpp:
+ * runtime/ErrorInstance.cpp:
+ * runtime/NameInstance.cpp:
+
+2012-08-30 Geoffrey Garen <[email protected]>
+
Fix the Qt build: Removed a now-dead variable.
* interpreter/Interpreter.cpp:
Modified: trunk/Source/_javascript_Core/runtime/BooleanObject.cpp (127213 => 127214)
--- trunk/Source/_javascript_Core/runtime/BooleanObject.cpp 2012-08-30 23:49:37 UTC (rev 127213)
+++ trunk/Source/_javascript_Core/runtime/BooleanObject.cpp 2012-08-31 00:00:46 UTC (rev 127214)
@@ -21,6 +21,8 @@
#include "config.h"
#include "BooleanObject.h"
+#include "JSScope.h"
+
namespace JSC {
ASSERT_CLASS_FITS_IN_CELL(BooleanObject);
Modified: trunk/Source/_javascript_Core/runtime/ErrorInstance.cpp (127213 => 127214)
--- trunk/Source/_javascript_Core/runtime/ErrorInstance.cpp 2012-08-30 23:49:37 UTC (rev 127213)
+++ trunk/Source/_javascript_Core/runtime/ErrorInstance.cpp 2012-08-31 00:00:46 UTC (rev 127214)
@@ -21,6 +21,8 @@
#include "config.h"
#include "ErrorInstance.h"
+#include "JSScope.h"
+
namespace JSC {
ASSERT_HAS_TRIVIAL_DESTRUCTOR(ErrorInstance);
Modified: trunk/Source/_javascript_Core/runtime/NameInstance.cpp (127213 => 127214)
--- trunk/Source/_javascript_Core/runtime/NameInstance.cpp 2012-08-30 23:49:37 UTC (rev 127213)
+++ trunk/Source/_javascript_Core/runtime/NameInstance.cpp 2012-08-31 00:00:46 UTC (rev 127214)
@@ -26,6 +26,8 @@
#include "config.h"
#include "NameInstance.h"
+#include "JSScope.h"
+
namespace JSC {
const ClassInfo NameInstance::s_info = { "Name", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(NameInstance) };
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes