1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2008 Google Inc. All rights reserved. 3 // 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file or at 6 // https://developers.google.com/open-source/licenses/bsd 7 8 #include "google/protobuf/arena_align.h" 9 10 #include <cstddef> 11 #include <cstdint> 12 13 namespace google { 14 namespace protobuf { 15 namespace internal { 16 17 // There are still compilers (open source) requiring a definition for constexpr. 18 constexpr size_t ArenaAlignDefault::align; // NOLINT 19 20 } // namespace internal 21 } // namespace protobuf 22 } // namespace google 23