Path: blob/main/contrib/llvm-project/libcxx/src/legacy_pointer_safety.cpp
35154 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#include <__config>9#include <memory>1011// Support for garbage collection was removed in C++23 by https://wg21.link/P2186R2. Libc++ implements12// that removal as an extension in all Standard versions. However, we still define the functions that13// were once part of the library's ABI for backwards compatibility.1415_LIBCPP_BEGIN_NAMESPACE_STD1617_LIBCPP_EXPORTED_FROM_ABI void declare_reachable(void*) {}18_LIBCPP_EXPORTED_FROM_ABI void declare_no_pointers(char*, size_t) {}19_LIBCPP_EXPORTED_FROM_ABI void undeclare_no_pointers(char*, size_t) {}20_LIBCPP_EXPORTED_FROM_ABI void* __undeclare_reachable(void* p) { return p; }2122_LIBCPP_END_NAMESPACE_STD232425