mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
88ba80bb61
Update container documentation Fix ISSUE_TEMPLATE Fix up documentation for quick and dirty, pulling example source directly from bundled code addresses #578
12 lines
162 B
C++
12 lines
162 B
C++
#include <cstdlib>
|
|
|
|
struct pre_main {
|
|
pre_main() {
|
|
#ifdef SOL2_CI
|
|
#ifdef _MSC_VER
|
|
_set_abort_behavior(0, _WRITE_ABORT_MSG);
|
|
#endif
|
|
#endif
|
|
}
|
|
} pm;
|