chore: Adjust Clang-format linter rules

120 Column Lines
 Block Indent for Bracket Align
 Custom Line Break Rules
 No Single Line Functions
This commit is contained in:
sithlord48
2024-10-17 14:04:35 -04:00
committed by Nick Bolton
parent 3f2bb2531a
commit 9b9ecb0d05
633 changed files with 14725 additions and 11479 deletions

View File

@ -22,19 +22,32 @@
#include <Windows.h>
#include <string>
MSWindowsDebugOutputter::MSWindowsDebugOutputter() {}
MSWindowsDebugOutputter::MSWindowsDebugOutputter()
{
}
MSWindowsDebugOutputter::~MSWindowsDebugOutputter() {}
MSWindowsDebugOutputter::~MSWindowsDebugOutputter()
{
}
void MSWindowsDebugOutputter::open(const char *title) {}
void MSWindowsDebugOutputter::open(const char *title)
{
}
void MSWindowsDebugOutputter::close() {}
void MSWindowsDebugOutputter::close()
{
}
void MSWindowsDebugOutputter::show(bool showIfEmpty) {}
void MSWindowsDebugOutputter::show(bool showIfEmpty)
{
}
bool MSWindowsDebugOutputter::write(ELevel level, const char *msg) {
bool MSWindowsDebugOutputter::write(ELevel level, const char *msg)
{
OutputDebugString((std::string(msg) + "\n").c_str());
return true;
}
void MSWindowsDebugOutputter::flush() {}
void MSWindowsDebugOutputter::flush()
{
}