mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
univalue, refactor: Convert indentation tabs to spaces
This commit is contained in:
parent
45750f61d6
commit
5d25a82b9a
1 changed files with 6 additions and 6 deletions
|
@ -21,16 +21,16 @@
|
||||||
(stmt); \
|
(stmt); \
|
||||||
assert(0 && "No exception caught"); \
|
assert(0 && "No exception caught"); \
|
||||||
} catch (excMatch & e) { \
|
} catch (excMatch & e) { \
|
||||||
} catch (...) { \
|
} catch (...) { \
|
||||||
assert(0 && "Wrong exception caught"); \
|
assert(0 && "Wrong exception caught"); \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
#define BOOST_CHECK_NO_THROW(stmt) { \
|
#define BOOST_CHECK_NO_THROW(stmt) { \
|
||||||
try { \
|
try { \
|
||||||
(stmt); \
|
(stmt); \
|
||||||
} catch (...) { \
|
} catch (...) { \
|
||||||
assert(0); \
|
assert(0); \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
||||||
void univalue_constructor()
|
void univalue_constructor()
|
||||||
|
|
Loading…
Add table
Reference in a new issue