[webkit-changes] cvs commit: JavaScriptCore/kjs identifier.cpp
Darin
darin at opensource.apple.com
Sun Sep 4 14:38:32 PDT 2005
darin 05/09/04 14:38:32
Modified: . ChangeLog
kjs identifier.cpp
Log:
* kjs/identifier.cpp: Fix comment, add missing include.
(Follow-on to changes from yesterday.)
Revision Changes Path
1.816 +5 -0 JavaScriptCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
retrieving revision 1.815
retrieving revision 1.816
diff -u -r1.815 -r1.816
--- ChangeLog 4 Sep 2005 06:21:53 -0000 1.815
+++ ChangeLog 4 Sep 2005 21:38:31 -0000 1.816
@@ -1,3 +1,8 @@
+2005-09-04 Darin Adler <darin at apple.com>
+
+ * kjs/identifier.cpp: Fix comment, add missing include.
+ (Follow-on to changes from yesterday.)
+
2005-09-03 Krzysztof Kowalczyk <kkowalczyk at gmail.com>
Reviewed, tweaked and landed by Darin.
1.19 +2 -1 JavaScriptCore/kjs/identifier.cpp
Index: identifier.cpp
===================================================================
RCS file: /cvs/root/JavaScriptCore/kjs/identifier.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- identifier.cpp 4 Sep 2005 06:21:54 -0000 1.18
+++ identifier.cpp 4 Sep 2005 21:38:32 -0000 1.19
@@ -25,7 +25,7 @@
// portable, and it would be good to figure out a 100% clean way that still avoids code that
// runs at init time.
-#if !WIN32 // Visual C++ can't handle placement new, it seems.
+#if !WIN32 // can't get this to compile on Visual C++ yet
#define AVOID_STATIC_CONSTRUCTORS 1
#endif
@@ -37,6 +37,7 @@
#include "fast_malloc.h"
#include <string.h> // for strlen
+#include <new> // for placement new
#define DUMP_STATISTICS 0
More information about the webkit-changes
mailing list