run clang-format

This commit is contained in:
Lucca Jiménez Könings
2024-06-26 14:06:06 +02:00
parent 3c80bcbf01
commit 29f4d0d286
19 changed files with 44 additions and 57 deletions
+2 -2
View File
@@ -19,8 +19,8 @@
#include "Common.h"
#include "Env.h"
#include "TConfig.h"
#include "Settings.h"
#include "TConfig.h"
#include <cstdlib>
#include <exception>
#include <fstream>
@@ -239,7 +239,7 @@ void TConfig::TryReadValue(toml::value& Table, const std::string& Category, cons
void TConfig::ParseFromFile(std::string_view name) {
try {
toml::value data {};
if (!mDisableConfig) {
if (!mDisableConfig) {
data = toml::parse<toml::preserve_comments>(name.data());
}