Skip to content

Commit cc3c37a

Browse files
committed
Fixed typos
1 parent fb9de2b commit cc3c37a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

example/terminate_handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ int test_inplace() {
219219
return 51;
220220
}
221221

222-
#ifndef !defined(BOOST_MSVC) && !defined(BOOST_STACKTRACE_USE_WINDBG)
222+
#if !defined(BOOST_MSVC) && !defined(BOOST_STACKTRACE_USE_WINDBG)
223223
// This is very dependent on compiler and link flags. No sane way to make it work, because
224224
// BOOST_NOINLINE could be ignored by MSVC compiler if link-time optimization is enabled.
225225
if (ss1 && ss1[0].name() != ss2[0].name()) {

test/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void test_comparisons_base(Bt nst, Bt st) {
110110
cst = cst;
111111
BOOST_TEST(nst);
112112
BOOST_TEST(st);
113-
#ifndef !defined(BOOST_MSVC) && !defined(BOOST_STACKTRACE_USE_WINDBG)
113+
#if !defined(BOOST_MSVC) && !defined(BOOST_STACKTRACE_USE_WINDBG)
114114
// This is very dependent on compiler and link flags. No sane way to make it work, because
115115
// BOOST_NOINLINE could be ignored by MSVC compiler if link-time optimization is enabled.
116116
BOOST_TEST(nst[0] != st[0]);

0 commit comments

Comments
 (0)