// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/sampling_heap_profiler/lock_free_address_hash_set.h" #include <bit> #include <limits> #include "base/containers/contains.h" namespace base { LockFreeAddressHashSet::LockFreeAddressHashSet(size_t buckets_count) : … { … } LockFreeAddressHashSet::~LockFreeAddressHashSet() { … } void LockFreeAddressHashSet::Insert(void* key) { … } void LockFreeAddressHashSet::Copy(const LockFreeAddressHashSet& other) { … } } // namespace base