univalue: Bump subtree

This commit is contained in:
MarcoFalke 2017-12-19 16:49:01 -05:00
commit fad349c507
2 changed files with 2 additions and 2 deletions

View file

@ -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) { \