test: Fix MSVC warning C4101 "unreferenced local variable"

This commit is contained in:
Hennadii Stepanov 2024-02-26 20:33:43 +00:00
parent 5d25a82b9a
commit 44f08786f4
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -20,7 +20,7 @@
try { \
(stmt); \
assert(0 && "No exception caught"); \
} catch (excMatch & e) { \
} catch (excMatch&) { \
} catch (...) { \
assert(0 && "Wrong exception caught"); \
} \