summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariano Iglesias <mariano@cricava.com>2011-03-11 07:09:05 -0300
committerBert Belder <bertbelder@gmail.com>2011-07-04 19:40:19 +0200
commit02ebcd8e261d7a30b5873548d527a1b6b9ae8e98 (patch)
tree2cd315cbd69bbdb1483023012aadaf06fa4392eb
parentc60cdcda4e39081fa56568df941aff1a4b56b39c (diff)
downloadnode-02ebcd8e261d7a30b5873548d527a1b6b9ae8e98.tar.gz
Adding missing v8 namespace to NODE_PSYMBOL
-rw-r--r--src/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node.h b/src/node.h
index 1eca872a0..cf2980d1a 100644
--- a/src/node.h
+++ b/src/node.h
@@ -53,7 +53,7 @@ v8::Handle<v8::Object> SetupProcessObject(int argc, char *argv[]);
void Load(v8::Handle<v8::Object> process);
void EmitExit(v8::Handle<v8::Object> process);
-#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))