You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
This is generally a namespace problem. I could not figure out why the line using namespace v8; above is not working but if you are looking for a fix, try my following solution.
While compiling from the master branch on Mac OS X 10.6.6, my compiler (using XCode 3.2.5) failed at the following block.
This is generally a namespace problem. I could not figure out why the line
using namespace v8;
above is not working but if you are looking for a fix, try my following solution.At this line of code (tentatively at line 213):
Handle<Value> Platform::GetInterfaceAddresses() {
add a
v8::
in front ofHandle
like this:v8::Handle<Value> Platform::GetInterfaceAddresses() {
and you should be able to compile. :)
The text was updated successfully, but these errors were encountered: