reservation_offset_table.cc 585 B

1234567891011121314151617
  1. // Copyright (c) 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/allocator/partition_allocator/reservation_offset_table.h"
  5. namespace partition_alloc::internal {
  6. #if defined(PA_HAS_64_BITS_POINTERS)
  7. ReservationOffsetTable::_ReservationOffsetTable
  8. ReservationOffsetTable::reservation_offset_tables_[];
  9. #else
  10. ReservationOffsetTable::_ReservationOffsetTable
  11. ReservationOffsetTable::reservation_offset_table_;
  12. #endif
  13. } // namespace partition_alloc::internal