22 lines
462 B
C++
22 lines
462 B
C++
/*
|
|
* Copyright 2010-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef RUNTIME_GC_STMS_GC_H
|
|
#define RUNTIME_GC_STMS_GC_H
|
|
|
|
#include "SameThreadMarkAndSweep.hpp"
|
|
|
|
namespace kotlin {
|
|
namespace gc {
|
|
|
|
using GC = kotlin::gc::SameThreadMarkAndSweep;
|
|
|
|
inline constexpr bool kSupportsMultipleMutators = true;
|
|
|
|
} // namespace gc
|
|
} // namespace kotlin
|
|
|
|
#endif // RUNTIME_GC_STMS_GC_H
|