Fix for win32 after r7125. For some reason introducing a bit field into...

Fix for win32 after r7125. For some reason introducing a bit field into GlobalHandles::Node causes a trouble.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7131 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7175dc09
...@@ -210,7 +210,7 @@ class GlobalHandles::Node : public Malloced { ...@@ -210,7 +210,7 @@ class GlobalHandles::Node : public Malloced {
NEAR_DEATH, // Callback has informed the handle is near death. NEAR_DEATH, // Callback has informed the handle is near death.
DESTROYED DESTROYED
}; };
State state_ : 3; State state_;
private: private:
// Handle specific callback. // Handle specific callback.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment