/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #pragma once namespace { template void destructImpl(T* p) noexcept { if (p != nullptr) { p->~T(); } } template void deleteImpl(T* p) noexcept { delete p; } } // namespace #ifndef HS_DEFINE_DESTRUCTIBLE #define HS_DEFINE_DESTRUCTIBLE(Name, Type...) \ extern "C" void destructible_destruct##Name(Type* p) noexcept { \ destructImpl(p); \ } \ extern "C" void destructible_delete##Name(Type* p) noexcept { \ deleteImpl(p); \ } #endif