Skip to content

Commit 44f0878

Browse files
committed
test: Fix MSVC warning C4101 "unreferenced local variable"
1 parent 5d25a82 commit 44f0878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/univalue/test/object.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
try { \
2121
(stmt); \
2222
assert(0 && "No exception caught"); \
23-
} catch (excMatch & e) { \
23+
} catch (excMatch&) { \
2424
} catch (...) { \
2525
assert(0 && "Wrong exception caught"); \
2626
} \

0 commit comments

Comments
 (0)