Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: src/objects-inl.h

Issue 12094036: Fix clearing of dead dependent codes and verify weak embedded maps on full GC. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 28d8762e9e0192ccc6c368e5b9709071ad39fced..d6e0acedeef55529bc1c4456a5cec5a8a29fdd4a 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -77,7 +77,7 @@ PropertyDetails PropertyDetails::AsDeleted() {
#define CAST_ACCESSOR(type) \
type* type::cast(Object* object) { \
- ASSERT(object->Is##type()); \
+ ASSERT(object->Is##type()); \
Michael Starzinger 2013/01/31 14:27:50 Unnecessary white-space change.
ulan 2013/02/04 09:54:06 Done.
return reinterpret_cast<type*>(object); \
}
« src/objects.cc ('K') | « src/objects.cc ('k') | src/objects-visiting-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698