Skip to content

Commit d6499f2

Browse files
authored
Fix stacktrace_from_exception builds with MinGW (#206)
Fixes #196
1 parent d408cf4 commit d6499f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/from_exception.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// accompanying file LICENSE_1_0.txt or copy at
55
// http://www.boost.org/LICENSE_1_0.txt)
66

7-
#if defined(_MSC_VER)
7+
#if defined(__MINGW32__) || defined(_MSC_VER)
88

99
#include <boost/stacktrace/safe_dump_to.hpp>
1010
#include <windows.h>

0 commit comments

Comments
 (0)