Remove extern declaration for the absorb_trace_exceptions flag

This commit is contained in:
Jeremy Rifkin 2025-02-18 20:04:42 -06:00
parent cebca81aa9
commit b0d12daf22
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -1,7 +1,6 @@
#ifndef ERROR_HPP #ifndef ERROR_HPP
#define ERROR_HPP #define ERROR_HPP
#include <atomic>
#include <exception> #include <exception>
#include <string> #include <string>
#include <utility> #include <utility>
@ -165,8 +164,6 @@ namespace detail {
// Check condition in both debug. std::runtime_error on failure. // Check condition in both debug. std::runtime_error on failure.
#define ASSERT(...) PHONY_USE(__VA_ARGS__) #define ASSERT(...) PHONY_USE(__VA_ARGS__)
#endif #endif
extern std::atomic_bool absorb_trace_exceptions;
} }
} }