1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "partition_alloc/reservation_offset_table.h"
6 
7 #include "partition_alloc/partition_alloc_buildflags.h"
8 
9 namespace partition_alloc::internal {
10 
11 #if BUILDFLAG(HAS_64_BIT_POINTERS)
12 ReservationOffsetTable ReservationOffsetTable::singleton_;
13 #else
14 ReservationOffsetTable::_ReservationOffsetTable
15     ReservationOffsetTable::reservation_offset_table_;
16 #endif  // BUILDFLAG(HAS_64_BIT_POINTERS)
17 
18 }  // namespace partition_alloc::internal
19