Skip to content

Commit

Permalink
Fix attempt for #177
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Sep 12, 2024
1 parent 0a1f8ac commit da94896
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/boost/stacktrace/stacktrace.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@

extern "C" {

BOOST_SYMBOL_EXPORT inline void* boost_stacktrace_impl_return_nullptr() { return nullptr; }
#if defined(BOOST_STACKTRACE_LINK) && defined(BOOST_STACKTRACE_DYN_LINK)
BOOST_SYMBOL_EXPORT
#endif
inline void* boost_stacktrace_impl_return_nullptr() { return nullptr; }
const char* boost_stacktrace_impl_current_exception_stacktrace();
bool* boost_stacktrace_impl_ref_capture_stacktraces_at_throw();

Expand Down

0 comments on commit da94896

Please sign in to comment.