mirror of
https://github.com/corda/corda.git
synced 2025-01-01 10:46:46 +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();
|
||
|
}
|
||
|
}
|