diff --git a/GUI/exception.cpp b/GUI/exception.cpp index 48d07a4..7d5966f 100644 --- a/GUI/exception.cpp +++ b/GUI/exception.cpp @@ -48,4 +48,4 @@ namespace AddVectoredExceptionHandler(FALSE, ExceptionLogger); return SetUnhandledExceptionFilter([](auto) -> LONG { Terminate(); }); }); -} \ No newline at end of file +} diff --git a/include/defs.h b/include/defs.h index 152fbea..22654e0 100644 --- a/include/defs.h +++ b/include/defs.h @@ -36,7 +36,7 @@ inline void FORMAT_MESSAGE(const char* format, Ts ...args) } #ifdef _DEBUG -#define TEST(...) static auto _ = std::invoke([]{ { __VA_ARGS__; } return 0; }) +#define TEST(...) static auto _ = std::invoke([]{ __VA_ARGS__; return 0; }) #else #define TEST(...) #endif