// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_ALLOCATOR_DISPATCHER_INTERNAL_TOOLS_H_ #define BASE_ALLOCATOR_DISPATCHER_INTERNAL_TOOLS_H_ #include <cstddef> namespace base::allocator::dispatcher::internal { constexpr bool LessEqual(size_t lhs, size_t rhs) { … } constexpr bool Equal(size_t lhs, size_t rhs) { … } struct IsValidObserver { … }; } // namespace base::allocator::dispatcher::internal #endif // BASE_ALLOCATOR_DISPATCHER_INTERNAL_TOOLS_H_