tiny fixes

This commit is contained in:
Akash Mozumdar 2018-12-27 00:18:05 -05:00
parent 6c0f4be45b
commit bf4eb4df8b
2 changed files with 2 additions and 2 deletions

View File

@ -48,4 +48,4 @@ namespace
AddVectoredExceptionHandler(FALSE, ExceptionLogger);
return SetUnhandledExceptionFilter([](auto) -> LONG { Terminate(); });
});
}
}

View File

@ -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