2023-04-20 18:08:54 +01:00
|
|
|
#include <folly/lang/SafeAssert.h>
|
|
|
|
|
|
|
|
namespace folly {
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
// The FOLLY_SAFE_DCHECK macro is peppered throughout the folly headers. When
|
|
|
|
// building in release mode this macro does nothing, but in debug builds it
|
|
|
|
// requires safe_assert_terminate() to be defined. To avoid building and
|
|
|
|
// linking against folly, we define our own no-op version of this function here.
|
|
|
|
template <>
|
2023-05-19 15:26:08 +01:00
|
|
|
void safe_assert_terminate<false>(safe_assert_arg const* /*arg*/,
|
|
|
|
...) noexcept {
|
|
|
|
abort();
|
2023-04-20 18:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2023-05-19 15:26:08 +01:00
|
|
|
void safe_assert_terminate<true>(safe_assert_arg const* /*arg*/, ...) noexcept {
|
|
|
|
abort();
|
2023-04-20 18:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace folly
|