2023-11-05 14:56:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-08-03 10:43:42 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define BREAKPOINT __debugbreak
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define BREAKPOINT __builtin_trap
|
|
|
|
#else
|
|
|
|
#error What the fuck is this compiler
|
2023-11-05 14:56:28 +00:00
|
|
|
#endif
|