chore(windows): unreferenced param in release build

This commit is contained in:
Marc Durdin 2019-11-08 09:40:40 +11:00
parent be1b8f6457
commit b7d4e83270

View file

@ -16,6 +16,10 @@ typedef BOOL
);
DWORD ExceptionMessage(LPSTR Proc, LPEXCEPTION_POINTERS ep) {
#ifndef _DEBUG
UNREFERENCED_PARAMETER(Proc);
#endif
MINIDUMP_EXCEPTION_INFORMATION mei;
char filename[MAX_PATH], temppath[MAX_PATH];
if (GetTempPath(MAX_PATH, temppath) == 0 ||