Skip to content

Commit

Permalink
Fix stacktrace_from_exception builds with MinGW (#206)
Browse files Browse the repository at this point in the history
Fixes #196
  • Loading branch information
apolukhin authored Feb 18, 2025
1 parent d408cf4 commit d6499f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/from_exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#if defined(_MSC_VER)
#if defined(__MINGW32__) || defined(_MSC_VER)

#include <boost/stacktrace/safe_dump_to.hpp>
#include <windows.h>
Expand Down

0 comments on commit d6499f2

Please sign in to comment.