Index: src/libsampler/utils.h |
diff --git a/src/libsampler/utils.h b/src/libsampler/utils.h |
deleted file mode 100644 |
index a0e28cefc85fadac722e71e70280f38994b38f36..0000000000000000000000000000000000000000 |
--- a/src/libsampler/utils.h |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// Copyright 2016 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_LIBSAMPLER_UTILS_H_ |
-#define V8_LIBSAMPLER_UTILS_H_ |
- |
-#include "include/v8.h" |
- |
-namespace v8 { |
-namespace sampler { |
- |
-class Malloced { |
- public: |
- static void* New(size_t size) { |
- return malloc(size); |
- } |
- |
- static void Delete(void* p) { |
- free(p); |
- } |
-}; |
- |
-} // namespace sampler |
-} // namespace v8 |
- |
-#endif // V8_LIBSAMPLER_UTILS_H_ |