From b044503951fab82a35b677ad7aee00b905c20030 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Sat, 23 Jul 2022 10:55:03 +0200 Subject: [PATCH] test/cli_argument_parser: get rid of useless parameters (pointed out by compiler warning) --- src/test/cli_argument_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/cli_argument_parser.cpp b/src/test/cli_argument_parser.cpp index 5979778..61406e2 100644 --- a/src/test/cli_argument_parser.cpp +++ b/src/test/cli_argument_parser.cpp @@ -21,7 +21,7 @@ #include "../lib/cli.h++" -int main(int argc, char* argv[]) { +int main() { std::cout << "################################################################################" << std::endl; std::cout << "CLI argument parser tests" << std::endl; std::cout << "################################################################################" << std::endl;