mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-05 05:02:06 +02:00
test: Fix MSVC warning C4101 "unreferenced local variable"
This commit is contained in:
@ -20,7 +20,7 @@
|
|||||||
try { \
|
try { \
|
||||||
(stmt); \
|
(stmt); \
|
||||||
assert(0 && "No exception caught"); \
|
assert(0 && "No exception caught"); \
|
||||||
} catch (excMatch & e) { \
|
} catch (excMatch&) { \
|
||||||
} catch (...) { \
|
} catch (...) { \
|
||||||
assert(0 && "Wrong exception caught"); \
|
assert(0 && "Wrong exception caught"); \
|
||||||
} \
|
} \
|
||||||
|
Reference in New Issue
Block a user