signage warning, and add v8::namespace

pull/22966/head
isaacs 2011-03-19 11:19:56 -07:00 committed by Ryan Dahl
parent 7a8c729830
commit 7bff70268a
1 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ int Platform::GetCPUInfo(Local<Array> *cpus) {
return -1;
}
*cpus = Array::New(numcpus);
for (int i = 0; i < numcpus; i++) {
for (unsigned int i = 0; i < numcpus; i++) {
cpuinfo = Object::New();
cputimes = Object::New();
cputimes->Set(String::New("user"),
@ -210,7 +210,7 @@ int Platform::GetLoadAvg(Local<Array> *loads) {
}
Handle<Value> Platform::GetInterfaceAddresses() {
v8::Handle<v8::Value> Platform::GetInterfaceAddresses() {
HandleScope scope;
return scope.Close(Object::New());
}