kicoil/cgal_skeleton_core/exception_stubs.cpp
2025-12-15 14:25:57 +01:00

13 lines
187 B
C++

#include <stdlib.h>
extern "C" {
void* __cxa_allocate_exception(size_t) {
abort();
}
void __cxa_throw(void *, void *, void (*)(void *)) {
abort();
}
}