| Index: runtime/vm/freelist.h
|
| diff --git a/runtime/vm/freelist.h b/runtime/vm/freelist.h
|
| index 711c3666d698e5b9a9dddd726f71695441686c43..7edc4fea48d724973b16a9cb777623758965f687 100644
|
| --- a/runtime/vm/freelist.h
|
| +++ b/runtime/vm/freelist.h
|
| @@ -5,8 +5,6 @@
|
| #ifndef VM_FREELIST_H_
|
| #define VM_FREELIST_H_
|
|
|
| -#include <bitset>
|
| -
|
| #include "platform/assert.h"
|
| #include "vm/allocation.h"
|
| #include "vm/raw_object.h"
|
| @@ -80,10 +78,6 @@ class FreeList {
|
|
|
| void Reset();
|
|
|
| - intptr_t Length(int index) const;
|
| -
|
| - void Print() const;
|
| -
|
| private:
|
| static const int kNumLists = 128;
|
|
|
| @@ -94,8 +88,6 @@ class FreeList {
|
|
|
| void SplitElementAfterAndEnqueue(FreeListElement* element, intptr_t size);
|
|
|
| - std::bitset<kNumLists + 1> free_map_;
|
| -
|
| FreeListElement* free_lists_[kNumLists + 1];
|
|
|
| DISALLOW_COPY_AND_ASSIGN(FreeList);
|
|
|