Skip to content

Commit c57d096

Browse files
style: pre-commit.ci fixes
1 parent d6a560f commit c57d096

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/help_usage.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
#include <CLI/CLI.hpp>
88
#include <string>
99

10-
int main(int argc, char* argv[]) {
10+
int main(int argc, char *argv[]) {
1111
std::string input_file_name, output_file_name;
1212
int level{5}, subopt{0};
1313

1414
// app caption
1515
CLI::App app{"CLI11 help"};
16-
//this tests out some of the wide character support, mainly for compilation checking
16+
// this tests out some of the wide character support, mainly for compilation checking
1717
argv = app.ensure_utf8(argv);
1818
app.require_subcommand(1);
1919
// subcommands options and flags

tests/AppTest.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,6 @@ TEST_CASE_METHOD(TApp, "doubleDashH", "[app]") {
647647
CHECK_NOTHROW(app.add_flag("--t"));
648648
}
649649

650-
651650
TEST_CASE_METHOD(TApp, "DisableFlagOverrideTest", "[app]") {
652651

653652
int val{0};

0 commit comments

Comments
 (0)