From bf4eb4df8b59bd3b27f18ce84c07098d3238d0ce Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Thu, 27 Dec 2018 00:18:05 -0500 Subject: [PATCH] tiny fixes --- GUI/exception.cpp | 2 +- include/defs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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