Skip to content

Commit

Permalink
Merge commit '7890db9~' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
marco committed Dec 20, 2018
2 parents 88967f6 + 40e3485 commit f33acf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
#define BOOST_CHECK_THROW(stmt, excMatch) { \
try { \
(stmt); \
assert(0 && "No exception caught"); \
} catch (excMatch & e) { \
} catch (...) { \
assert(0); \
assert(0 && "Wrong exception caught"); \
} \
}
#define BOOST_CHECK_NO_THROW(stmt) { \
Expand Down

0 comments on commit f33acf9

Please sign in to comment.