Revision: 7065
Author: [email protected]
Date: Fri Mar  4 13:26:57 2011
Log: [Isolates] Fix build on 64-bit version of Windows with vs2008
Review URL: http://codereview.chromium.org/6624006
http://code.google.com/p/v8/source/detail?r=7065

Modified:
 /branches/experimental/isolates/SConstruct
 /branches/experimental/isolates/src/isolate.h

=======================================
--- /branches/experimental/isolates/SConstruct  Thu Mar  3 00:38:10 2011
+++ /branches/experimental/isolates/SConstruct  Fri Mar  4 13:26:57 2011
@@ -577,7 +577,7 @@
       }
     },
     'arch:ia32': {
-      'CPPDEFINES': ['V8_TARGET_ARCH_IA32'],
+      'CPPDEFINES': ['V8_TARGET_ARCH_IA32', 'WIN32'],
       'LINKFLAGS': ['/MACHINE:X86']
     },
     'arch:x64': {
=======================================
--- /branches/experimental/isolates/src/isolate.h       Thu Mar  3 00:38:10 2011
+++ /branches/experimental/isolates/src/isolate.h       Fri Mar  4 13:26:57 2011
@@ -918,7 +918,7 @@
   // not entered by any thread and can be Disposed.
   // If the same thread enters the Isolate more then once, the entry_count_
   // is incremented rather then a new item pushed to the stack.
-  struct EntryStackItem {
+  class EntryStackItem {
    public:
     EntryStackItem(PerIsolateThreadData* previous_thread_data,
                    Isolate* previous_isolate,

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to