mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
Merge 9c8b36eba6 into merged_master (Bitcoin PR bitcoin/bitcoin#30464)
This commit is contained in:
commit
bc3498ebd9
1 changed files with 7 additions and 7 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue