projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
220e228
)
Adding missing v8 namespace to NODE_PSYMBOL
author
Mariano Iglesias
<mariano@cricava.com>
Fri, 11 Mar 2011 10:09:05 +0000
(07:09 -0300)
committer
Paul Querna
<pquerna@apache.org>
Mon, 4 Jul 2011 16:50:10 +0000
(09:50 -0700)
src/node.h
patch
|
blob
|
history
diff --git
a/src/node.h
b/src/node.h
index
14d726d
..
0c398a9
100644
(file)
--- a/
src/node.h
+++ b/
src/node.h
@@
-39,7
+39,7
@@
namespace node {
int Start (int argc, char *argv[]);
-#define NODE_PSYMBOL(s)
Persistent<String>::New(
String::NewSymbol(s))
+#define NODE_PSYMBOL(s)
v8::Persistent<v8::String>::New(v8::
String::NewSymbol(s))
/* Converts a unixtime to V8 Date */
#define NODE_UNIXTIME_V8(t) v8::Date::New(1000*static_cast<double>(t))