123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include <stdlib.h>
- #include <new>
- #include "sgx_defs.h"
- #include "sgx_trts.h"
- #include "internal/se_cdefs.h"
- SGX_WEAK void SGXAPI operator delete[] (void* ptr, const std::nothrow_t& nothrow_constant) throw()
- {
- operator delete(ptr, nothrow_constant);
- }
|