mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
test: Fix MSVC warning C4101 "unreferenced local variable"
This commit is contained in:
parent
5d25a82b9a
commit
44f08786f4
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
try { \
|
||||
(stmt); \
|
||||
assert(0 && "No exception caught"); \
|
||||
} catch (excMatch & e) { \
|
||||
} catch (excMatch&) { \
|
||||
} catch (...) { \
|
||||
assert(0 && "Wrong exception caught"); \
|
||||
} \
|
||||
|
|
Loading…
Add table
Reference in a new issue