https://bugs.webkit.org/show_bug.cgi?id=81834
Reviewed by Adam Barth.
* jsc.cpp:
* os-win32/WinMain.cpp:
* runtime/JSDateMath.cpp:
* runtime/TimeoutChecker.cpp:
* testRegExp.cpp:
* tools/CodeProfiling.cpp:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@111618
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2012-03-21 Eric Seidel <eric@webkit.org>
+ Fix remaining WTF includes in JavaScriptCore in preparation for moving WTF headers out of JavaScriptCore
+ https://bugs.webkit.org/show_bug.cgi?id=81834
+
+ Reviewed by Adam Barth.
+
+ * jsc.cpp:
+ * os-win32/WinMain.cpp:
+ * runtime/JSDateMath.cpp:
+ * runtime/TimeoutChecker.cpp:
+ * testRegExp.cpp:
+ * tools/CodeProfiling.cpp:
+
+2012-03-21 Eric Seidel <eric@webkit.org>
+
WTF::MetaAllocator has a weak vtable (discovered when building wtf as a static library)
https://bugs.webkit.org/show_bug.cgi?id=81838
#include "BytecodeGenerator.h"
#include "Completion.h"
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
#include "ExceptionHelpers.h"
#include "InitializeThreading.h"
#include "Interpreter.h"
*/
#include "config.h"
-#include "Vector.h"
+#include <wtf/Vector.h>
#include <winbase.h>
#include <winnls.h>
#include <wtf/UnusedParam.h>
#include "config.h"
#include "JSDateMath.h"
-#include "CurrentTime.h"
#include "JSObject.h"
-#include "MathExtras.h"
#include "ScopeChain.h"
-#include "StdLibExtras.h"
-#include "StringExtras.h"
#include <algorithm>
#include <limits.h>
#include <time.h>
#include <wtf/ASCIICType.h>
#include <wtf/Assertions.h>
+#include <wtf/CurrentTime.h>
+#include <wtf/MathExtras.h>
+#include <wtf/StdLibExtras.h>
+#include <wtf/StringExtras.h>
#include <wtf/text/StringBuilder.h>
#if HAVE(ERRNO_H)
#elif OS(WINDOWS)
#include <windows.h>
#else
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
#endif
using namespace std;
#include "config.h"
#include "RegExp.h"
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
#include "InitializeThreading.h"
#include "JSGlobalObject.h"
#include "UStringBuilder.h"
#include "CodeProfiling.h"
#include "CodeProfile.h"
-#include "MetaAllocator.h"
+#include <wtf/MetaAllocator.h>
#if HAVE(SIGNAL_H)
#include <signal.h>