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

Unified Diff: src/field-index.h

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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/field-index.h
diff --git a/src/field-index.h b/src/field-index.h
index 096b33509f7d40dd16d7f046df897b70d511fdf5..ea7a0c425dc78c443177476de0aa64b4b9464997 100644
--- a/src/field-index.h
+++ b/src/field-index.h
@@ -96,12 +96,15 @@ class FieldIndex V8_FINAL {
class IsDoubleBits: public BitField<bool, IsInObjectBits::kNext, 1> {};
// Number of inobject properties.
class InObjectPropertyBits: public BitField<int, IsDoubleBits::kNext,
- kDescriptorIndexBitCount> {};
+ kDescriptorIndexBitCount> {
+ };
// Offset of first inobject property from beginning of object.
class FirstInobjectPropertyOffsetBits:
- public BitField<int, InObjectPropertyBits::kNext, 7> {};
+ public BitField<int, InObjectPropertyBits::kNext, 7> {
+ };
class IsHiddenField:
- public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {};
+ public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {
+ };
STATIC_ASSERT(IsHiddenField::kNext <= 32);
int bit_field_;
« no previous file with comments | « src/elements-kind.h ('k') | src/flag-definitions.h » ('j') | src/lithium-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698