| Index: src/allocation.cc
|
| diff --git a/src/allocation.cc b/src/allocation.cc
|
| index 94aaad3fd42e8aac7a99d19658b45bb95adbe0f0..69edf6906cf2d03601af6bf90a98ae798c836316 100644
|
| --- a/src/allocation.cc
|
| +++ b/src/allocation.cc
|
| @@ -100,24 +100,4 @@ char* StrNDup(const char* str, int n) {
|
| return result;
|
| }
|
|
|
| -
|
| -void PreallocatedStorage::LinkTo(PreallocatedStorage* other) {
|
| - next_ = other->next_;
|
| - other->next_->previous_ = this;
|
| - previous_ = other;
|
| - other->next_ = this;
|
| -}
|
| -
|
| -
|
| -void PreallocatedStorage::Unlink() {
|
| - next_->previous_ = previous_;
|
| - previous_->next_ = next_;
|
| -}
|
| -
|
| -
|
| -PreallocatedStorage::PreallocatedStorage(size_t size)
|
| - : size_(size) {
|
| - previous_ = next_ = this;
|
| -}
|
| -
|
| } } // namespace v8::internal
|
|
|