// 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_BASE_RING_BUFFER_H_ #define V8_BASE_RING_BUFFER_H_ #include <cstdint> namespace v8::base { template <typename T, uint8_t _SIZE = 10> class RingBuffer final { … }; } // namespace v8::base #endif // V8_BASE_RING_BUFFER_H_