mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +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();
|
|
}
|
|
}
|