From 293f4d1593513ed1de4ff7233b6ca06ac0e2a287 Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sun, 26 Jan 2025 18:15:21 -0600 Subject: [PATCH] Export should_absorb_trace_exceptions to fix tests --- src/options.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/options.hpp b/src/options.hpp index ddd6b87..4a4fce0 100644 --- a/src/options.hpp +++ b/src/options.hpp @@ -5,7 +5,8 @@ namespace cpptrace { namespace detail { - bool should_absorb_trace_exceptions(); + // exported for test purposes + CPPTRACE_EXPORT bool should_absorb_trace_exceptions(); bool should_resolve_inlined_calls(); cache_mode get_cache_mode(); }