0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

univalue, refactor: Convert indentation tabs to spaces

This commit is contained in:
Hennadii Stepanov 2024-07-16 22:23:53 +01:00
parent 45750f61d6
commit 5d25a82b9a
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -21,16 +21,16 @@
(stmt); \
assert(0 && "No exception caught"); \
} catch (excMatch & e) { \
} catch (...) { \
assert(0 && "Wrong exception caught"); \
} \
} catch (...) { \
assert(0 && "Wrong exception caught"); \
} \
}
#define BOOST_CHECK_NO_THROW(stmt) { \
try { \
(stmt); \
} catch (...) { \
assert(0); \
} \
} catch (...) { \
assert(0); \
} \
}
void univalue_constructor()