Merge 9c8b36eba6 into merged_master (Bitcoin PR bitcoin/bitcoin#30464)

This commit is contained in:
ivanlele 2026-03-09 14:47:51 +00:00
commit bc3498ebd9
No known key found for this signature in database

View file

@ -20,17 +20,17 @@
try { \
(stmt); \
assert(0 && "No exception caught"); \
} catch (excMatch & e) { \
} catch (...) { \
assert(0 && "Wrong exception caught"); \
} \
} catch (excMatch&) { \
} catch (...) { \
assert(0 && "Wrong exception caught"); \
} \
}
#define BOOST_CHECK_NO_THROW(stmt) { \
try { \
(stmt); \
} catch (...) { \
assert(0); \
} \
} catch (...) { \
assert(0); \
} \
}
void univalue_constructor()