aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/utils-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/utils-inl.h')
-rw-r--r--deps/v8/src/utils-inl.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/deps/v8/src/utils-inl.h b/deps/v8/src/utils-inl.h
deleted file mode 100644
index d0c0e3cb2a..0000000000
--- a/deps/v8/src/utils-inl.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2011 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8_UTILS_INL_H_
-#define V8_UTILS_INL_H_
-
-#include "src/list-inl.h"
-
-namespace v8 {
-namespace internal {
-
-template<typename T, int growth_factor, int max_growth>
-void Collector<T, growth_factor, max_growth>::Reset() {
- for (int i = chunks_.length() - 1; i >= 0; i--) {
- chunks_.at(i).Dispose();
- }
- chunks_.Rewind(0);
- index_ = 0;
- size_ = 0;
-}
-
-} } // namespace v8::internal
-
-#endif // V8_UTILS_INL_H_