chore: auto-format with clang-format

This commit is contained in:
github-actions[bot]
2025-06-11 12:10:59 +00:00
parent 4cf35fd946
commit be63df4bf6
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -23,7 +23,8 @@
bool gScanUnimplementedEnabled = false;
void scanUnimplementdParseCommandLineArguments(int argc, char** argv){
void scanUnimplementdParseCommandLineArguments(int argc, char** argv)
{
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "--scan-unimplemented") == 0) {
gScanUnimplementedEnabled = true;
+1 -1
View File
@@ -64,7 +64,7 @@ void ConfigChecker::check(fallout::Config& readedConfig)
if (!gScanUnimplementedEnabled) {
return;
}
std::cout << "Checking config file: " << configFileName << std::endl;
int errorsCount = 0;
auto readedMap = config_to_maps(readedConfig);