aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorthstar <northstar@northstar.tf>2023-12-07 21:20:15 +0100
committerNorthstar <northstar@northstar.tf>2023-12-07 21:20:15 +0100
commitde5a5006f16eb792033dc2ba48b0ec67f180f55b (patch)
tree3e9b8b2ccda111172d3176381303053ea3b15dca
parent2a30a0d58e31a6142a6077e7bd9da85d53e7a329 (diff)
downloadNorthstarLauncher-de5a5006f16eb792033dc2ba48b0ec67f180f55b.tar.gz
NorthstarLauncher-de5a5006f16eb792033dc2ba48b0ec67f180f55b.zip
Format project
-rw-r--r--NorthstarDLL/core/memalloc.h2
-rw-r--r--NorthstarDLL/logging/crashhandler.cpp8
2 files changed, 7 insertions, 3 deletions
diff --git a/NorthstarDLL/core/memalloc.h b/NorthstarDLL/core/memalloc.h
index 7df68429..97f60012 100644
--- a/NorthstarDLL/core/memalloc.h
+++ b/NorthstarDLL/core/memalloc.h
@@ -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);
diff --git a/NorthstarDLL/logging/crashhandler.cpp b/NorthstarDLL/logging/crashhandler.cpp
index 5dec315a..a01de5a1 100644
--- a/NorthstarDLL/logging/crashhandler.cpp
+++ b/NorthstarDLL/logging/crashhandler.cpp
@@ -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();
}