#include "include/cppgc/internal/caged-heap-local-data.h"
#include <algorithm>
#include <type_traits>
#include "include/cppgc/platform.h"
#include "src/base/macros.h"
namespace cppgc {
namespace internal {
#if defined(CPPGC_YOUNG_GENERATION)
static_assert …;
void AgeTable::SetAgeForRange(uintptr_t offset_begin, uintptr_t offset_end,
Age age,
AdjacentCardsPolicy adjacent_cards_policy) { … }
AgeTable::Age AgeTable::GetAgeForRange(uintptr_t offset_begin,
uintptr_t offset_end) const { … }
void AgeTable::ResetForTesting() { … }
#endif
}
}