Fix typo in r25689 (Refactor Map::ConstructionCount.)
authorulan <ulan@chromium.org>
Mon, 8 Dec 2014 10:46:12 +0000 (02:46 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 8 Dec 2014 10:46:19 +0000 (10:46 +0000)
BUG=chromium:439868
LOG=N

Review URL: https://codereview.chromium.org/779293003

Cr-Commit-Position: refs/heads/master@{#25705}

src/objects.h

index 2b15eb4..c6f8b10 100644 (file)
@@ -5677,7 +5677,7 @@ class Map: public HeapObject {
   // This counter is used for in-object slack tracking and for map aging.
   // The in-object slack tracking is considered enabled when the counter is
   // in the range [kSlackTrackingCounterStart, kSlackTrackingCounterEnd].
-  class Counter : public BitField<bool, 28, 4> {};
+  class Counter : public BitField<int, 28, 4> {};
   static const int kSlackTrackingCounterStart = 14;
   static const int kSlackTrackingCounterEnd = 8;
   static const int kRetainingCounterStart = kSlackTrackingCounterEnd - 1;