// Copyright 2020 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_UNITTESTS_HEAP_CPPGC_TEST_PLATFORM_H_ #define V8_UNITTESTS_HEAP_CPPGC_TEST_PLATFORM_H_ #include "include/cppgc/default-platform.h" #include "src/base/compiler-specific.h" namespace cppgc { namespace internal { namespace testing { class TestPlatform : public DefaultPlatform { … }; } // namespace testing } // namespace internal } // namespace cppgc #endif // V8_UNITTESTS_HEAP_CPPGC_TEST_PLATFORM_H_