Revision: 7131
Author: [email protected]
Date: Thu Mar 10 05:45:35 2011
Log: Fix for win32 after r7125. For some reason introducing a bit field
into GlobalHandles::Node causes a trouble.
http://code.google.com/p/v8/source/detail?r=7131
Modified:
/branches/bleeding_edge/src/global-handles.cc
=======================================
--- /branches/bleeding_edge/src/global-handles.cc Thu Mar 10 04:05:31 2011
+++ /branches/bleeding_edge/src/global-handles.cc Thu Mar 10 05:45:35 2011
@@ -210,7 +210,7 @@
NEAR_DEATH, // Callback has informed the handle is near death.
DESTROYED
};
- State state_ : 3;
+ State state_;
private:
// Handle specific callback.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev