aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/tests/runtime_tests/source/abort_clean.cpp
blob: 821333b0e6e88841371b2a3e886ab59b113cb022 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <cstdlib>

struct pre_main {
	pre_main() {
#ifdef SOL2_CI
#ifdef _MSC_VER
		_set_abort_behavior(0, _WRITE_ABORT_MSG);
#endif
#endif
	}
} pm;