osrm-backend/third_party/sol2/tests/test_abort_clean.cpp

12 lines
149 B
C++
Raw Normal View History

2020-11-18 19:01:43 -05:00
#include <cstdlib>
struct pre_main {
pre_main() {
#ifdef SOL2_CI
#ifdef _MSC_VER
_set_abort_behavior(0, _WRITE_ABORT_MSG);
#endif
#endif
}
} pm;