Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index d00941675789dbee0d2b7b132c5f051f34a741bd..7e639a944a37a083aec8166981705fef72a3d75c 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -5956,10 +5956,11 @@ class DependentCode: public FixedArray { |
kAllocationSiteTenuringChangedGroup, |
// Group of code that depends on element transition information in |
// AllocationSites not being changed. |
- kAllocationSiteTransitionChangedGroup, |
- kGroupCount = kAllocationSiteTransitionChangedGroup + 1 |
+ kAllocationSiteTransitionChangedGroup |
}; |
+ static const int kGroupCount = kAllocationSiteTransitionChangedGroup + 1; |
Sven Panne
2014/08/25 13:18:30
One bright day we'll have constexpr... ;-)
|
+ |
// Array for holding the index of the first code object of each group. |
// The last element stores the total number of code objects. |
class GroupStartIndexes { |