Fix style violation.

TBR=christian.plesner.hansen@gmail.com
Review URL: http://codereview.chromium.org/257017

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3003 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse@chromium.org 2009-10-01 07:29:54 +00:00
parent 226b3de18e
commit 786ec6a66f

View File

@ -4227,7 +4227,8 @@ class Relocatable BASE_EMBEDDED {
inline Relocatable() : prev_(top_) { top_ = this; }
virtual ~Relocatable() {
ASSERT_EQ(top_, this);
top_ = prev_; }
top_ = prev_;
}
virtual void IterateInstance(ObjectVisitor* v) { }
virtual void PostGarbageCollection() { }