Skip to content

Commit

Permalink
Format project
Browse files Browse the repository at this point in the history
  • Loading branch information
Northstar committed Dec 7, 2023
1 parent 2a30a0d commit de5a500
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NorthstarDLL/core/memalloc.h
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
8 changes: 6 additions & 2 deletions NorthstarDLL/logging/crashhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit de5a500

Please sign in to comment.