Fix lint errors.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3002 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse@chromium.org 2009-10-01 06:27:29 +00:00
parent 52d87249cb
commit 226b3de18e
2 changed files with 8 additions and 6 deletions

View File

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