Format project

This commit is contained in:
Northstar 2023-12-07 21:20:15 +01:00
parent 2a30a0d58e
commit de5a5006f1
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#pragma once
#include "rapidjson/document.h"
//#include "include/rapidjson/allocators.h"
// #include "include/rapidjson/allocators.h"
extern "C" void* _malloc_base(size_t size);
extern "C" void* _calloc_base(size_t const count, size_t const size);

View File

@ -98,8 +98,12 @@ BOOL WINAPI ConsoleCtrlRoutine(DWORD dwCtrlType)
// Purpose: Constructor
//-----------------------------------------------------------------------------
CCrashHandler::CCrashHandler()
: m_hExceptionFilter(nullptr), m_pExceptionInfos(nullptr), m_bHasSetConsolehandler(false), m_bAllExceptionsFatal(false),
m_bHasShownCrashMsg(false), m_bState(false)
: m_hExceptionFilter(nullptr)
, m_pExceptionInfos(nullptr)
, m_bHasSetConsolehandler(false)
, m_bAllExceptionsFatal(false)
, m_bHasShownCrashMsg(false)
, m_bState(false)
{
Init();
}