mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
9 lines
154 B
C
9 lines
154 B
C
|
#pragma once
|
||
|
|
||
|
// Exits the enclave if passed in boolean is false.
|
||
|
inline void aex_assert(bool predicate) {
|
||
|
if (!predicate) {
|
||
|
abort();
|
||
|
}
|
||
|
}
|