2023-11-05 15:56:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
2023-08-03 12:43:42 +02: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 15:56:28 +01:00
|
|
|
#endif
|