This commit is contained in:
Quinten 2025-10-29 17:55:51 +01:00
parent ee6e4b9c38
commit be91e731fa
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 75576cb2eaf47f451e4f2fe683ddb56c4d496516 Subproject commit 6afa83b23a83cfb98034ab432850cb8a660ff222

View File

@ -18,7 +18,7 @@ int main(int argc, char **argv)
std::string configPath; std::string configPath;
// NOLINTBEGIN // NOLINTBEGIN
if (argc == 3 && std::string(argv[1]) == "-c") if (argc == 3 && std::string(argv[1]) == "-c")
{ {
configPath = argv[2]; configPath = argv[2];
} }
@ -28,7 +28,7 @@ int main(int argc, char **argv)
} }
else else
{ {
std::cerr << "Usage: " + std::string(argv[0]) + " [-c] <config_file_path>"; // NOLINT // std::cerr << "Usage: " + std::string(argv[0]) + " [-c] <config_file_path>"; // NOLINT
return 1; return 1;
} }
// NOLINTEND // NOLINTEND