corda/sgx-jvm/jvm-enclave/enclave/aex_assert.h

9 lines
154 B
C
Raw Normal View History

#pragma once
// Exits the enclave if passed in boolean is false.
inline void aex_assert(bool predicate) {
if (!predicate) {
abort();
}
}