Coverage Report

Created: 2026-09-14 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/common/arena.h
Line
Count
Source
1
// Copyright 2024 Google LLC
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//     https://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
#ifndef THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_
16
#define THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_
17
18
#include <type_traits>
19
#include <utility>
20
21
#include "absl/base/nullability.h"
22
#include "google/protobuf/arena.h"
23
24
namespace cel {
25
26
template <typename T = void>
27
struct ArenaTraits;
28
29
namespace common_internal {
30
31
template <typename T>
32
struct AssertArenaType : std::false_type {
33
  static_assert(!std::is_void_v<T>, "T must not be void");
34
  static_assert(!std::is_reference_v<T>, "T must not be a reference");
35
  static_assert(!std::is_volatile_v<T>, "T must not be volatile qualified");
36
  static_assert(!std::is_const_v<T>, "T must not be const qualified");
37
  static_assert(!std::is_array_v<T>, "T must not be an array");
38
};
39
40
template <typename, typename = void>
41
struct ArenaTraitsConstructible {
42
  using type = std::false_type;
43
};
44
45
template <typename T>
46
struct ArenaTraitsConstructible<
47
    T, std::void_t<decltype(ArenaTraits<T>::constructible)>> {
48
  using type = typename ArenaTraits<T>::constructible;
49
};
50
51
template <typename T>
52
std::enable_if_t<google::protobuf::Arena::is_arena_constructable<T>::value,
53
                 google::protobuf::Arena* absl_nullable>
54
GetArena(const T* absl_nullable ptr) {
55
  return ptr != nullptr ? ptr->GetArena() : nullptr;
56
}
57
58
template <typename T>
59
std::enable_if_t<!google::protobuf::Arena::is_arena_constructable<T>::value,
60
                 google::protobuf::Arena* absl_nullable>
61
GetArena([[maybe_unused]] const T* absl_nullable ptr) {
62
  return nullptr;
63
}
64
65
template <typename, typename = void>
66
struct HasArenaTraitsTriviallyDestructible : std::false_type {};
67
68
template <typename T>
69
struct HasArenaTraitsTriviallyDestructible<
70
    T, std::void_t<decltype(ArenaTraits<T>::trivially_destructible(
71
           std::declval<const T&>()))>> : std::true_type {};
72
73
}  // namespace common_internal
74
75
template <>
76
struct ArenaTraits<void> {
77
  template <typename U>
78
  using constructible = std::disjunction<
79
      typename common_internal::AssertArenaType<U>::type,
80
      typename common_internal::ArenaTraitsConstructible<U>::type>;
81
82
  template <typename U>
83
  using always_trivially_destructible =
84
      std::disjunction<typename common_internal::AssertArenaType<U>::type,
85
                       std::is_trivially_destructible<U>>;
86
87
  template <typename U>
88
33.5M
  static bool trivially_destructible(const U& obj) {
89
33.5M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
33.5M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
33.5M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
33.5M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
33.5M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
33.5M
    if constexpr (always_trivially_destructible<U>()) {
96
16.4M
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
17.1M
                             U>::value) {
101
17.1M
      return ArenaTraits<U>::trivially_destructible(obj);
102
17.1M
    } else {
103
0
      return false;
104
0
    }
105
33.5M
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<std::__1::monostate>(std::__1::monostate const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedMessageValue>(cel::ParsedMessageValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::NullValue>(cel::NullValue const&)
Line
Count
Source
88
2.98k
  static bool trivially_destructible(const U& obj) {
89
2.98k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
2.98k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
2.98k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
2.98k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
2.98k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
2.98k
    if constexpr (always_trivially_destructible<U>()) {
96
2.98k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
2.98k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::BoolValue>(cel::BoolValue const&)
Line
Count
Source
88
866k
  static bool trivially_destructible(const U& obj) {
89
866k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
866k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
866k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
866k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
866k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
866k
    if constexpr (always_trivially_destructible<U>()) {
96
866k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
866k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::IntValue>(cel::IntValue const&)
Line
Count
Source
88
14.5M
  static bool trivially_destructible(const U& obj) {
89
14.5M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
14.5M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
14.5M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
14.5M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
14.5M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
14.5M
    if constexpr (always_trivially_destructible<U>()) {
96
14.5M
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
14.5M
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::UintValue>(cel::UintValue const&)
Line
Count
Source
88
251k
  static bool trivially_destructible(const U& obj) {
89
251k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
251k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
251k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
251k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
251k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
251k
    if constexpr (always_trivially_destructible<U>()) {
96
251k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
251k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::DoubleValue>(cel::DoubleValue const&)
Line
Count
Source
88
288k
  static bool trivially_destructible(const U& obj) {
89
288k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
288k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
288k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
288k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
288k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
288k
    if constexpr (always_trivially_destructible<U>()) {
96
288k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
288k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::DurationValue>(cel::DurationValue const&)
Line
Count
Source
88
23.8k
  static bool trivially_destructible(const U& obj) {
89
23.8k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
23.8k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
23.8k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
23.8k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
23.8k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
23.8k
    if constexpr (always_trivially_destructible<U>()) {
96
23.8k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
23.8k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::TimestampValue>(cel::TimestampValue const&)
Line
Count
Source
88
760
  static bool trivially_destructible(const U& obj) {
89
760
    static_assert(!std::is_void_v<U>, "T must not be void");
90
760
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
760
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
760
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
760
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
760
    if constexpr (always_trivially_destructible<U>()) {
96
760
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
760
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::TypeValue>(cel::TypeValue const&)
Line
Count
Source
88
2.12k
  static bool trivially_destructible(const U& obj) {
89
2.12k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
2.12k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
2.12k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
2.12k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
2.12k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
2.12k
    if constexpr (always_trivially_destructible<U>()) {
96
2.12k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
2.12k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyListValue>(cel::common_internal::LegacyListValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedJsonListValue>(cel::ParsedJsonListValue const&)
Line
Count
Source
88
1.76k
  static bool trivially_destructible(const U& obj) {
89
1.76k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
1.76k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
1.76k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
1.76k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
1.76k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
1.76k
    if constexpr (always_trivially_destructible<U>()) {
96
1.76k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
1.76k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedRepeatedFieldValue>(cel::ParsedRepeatedFieldValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomListValue>(cel::CustomListValue const&)
Line
Count
Source
88
229k
  static bool trivially_destructible(const U& obj) {
89
229k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
229k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
229k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
229k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
229k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
229k
    if constexpr (always_trivially_destructible<U>()) {
96
229k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
229k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyMapValue>(cel::common_internal::LegacyMapValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedJsonMapValue>(cel::ParsedJsonMapValue const&)
Line
Count
Source
88
887
  static bool trivially_destructible(const U& obj) {
89
887
    static_assert(!std::is_void_v<U>, "T must not be void");
90
887
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
887
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
887
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
887
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
887
    if constexpr (always_trivially_destructible<U>()) {
96
887
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
887
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedMapFieldValue>(cel::ParsedMapFieldValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomMapValue>(cel::CustomMapValue const&)
Line
Count
Source
88
231k
  static bool trivially_destructible(const U& obj) {
89
231k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
231k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
231k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
231k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
231k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
231k
    if constexpr (always_trivially_destructible<U>()) {
96
231k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
231k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyStructValue>(cel::common_internal::LegacyStructValue const&)
Line
Count
Source
88
20.3k
  static bool trivially_destructible(const U& obj) {
89
20.3k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
20.3k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
20.3k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
20.3k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
20.3k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
20.3k
    if constexpr (always_trivially_destructible<U>()) {
96
20.3k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
20.3k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomStructValue>(cel::CustomStructValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::OpaqueValue>(cel::OpaqueValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::BytesValue>(cel::BytesValue const&)
Line
Count
Source
88
11.0k
  static bool trivially_destructible(const U& obj) {
89
11.0k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
11.0k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
11.0k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
11.0k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
11.0k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
11.0k
                             U>::value) {
101
11.0k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
11.0k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::StringValue>(cel::StringValue const&)
Line
Count
Source
88
193k
  static bool trivially_destructible(const U& obj) {
89
193k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
193k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
193k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
193k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
193k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
193k
                             U>::value) {
101
193k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
193k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ErrorValue>(cel::ErrorValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::UnknownValue>(cel::UnknownValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::ByteString>(cel::common_internal::ByteString const&)
Line
Count
Source
88
334k
  static bool trivially_destructible(const U& obj) {
89
334k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
334k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
334k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
334k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
334k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
334k
                             U>::value) {
101
334k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
334k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::Value>(cel::Value const&)
Line
Count
Source
88
16.6M
  static bool trivially_destructible(const U& obj) {
89
16.6M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
16.6M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
16.6M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
16.6M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
16.6M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
16.6M
                             U>::value) {
101
16.6M
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
16.6M
  }
106
};
107
108
}  // namespace cel
109
110
#endif  // THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_