Skip to content

Commit 72eb637

Browse files
style: pre-commit.ci fixes
1 parent f76bce0 commit 72eb637

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/module_test/module_test.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ using CLI::App;
1515
using CLI::ParseError;
1616

1717
int main(int argc, char *argv[]) {
18-
std::string script_path {};
19-
std::string toolchain_path {};
20-
std::string build_dir {};
21-
std::string install_dir {};
18+
std::string script_path{};
19+
std::string toolchain_path{};
20+
std::string build_dir{};
21+
std::string install_dir{};
2222
std::string output{};
2323
App app{"Module test"};
2424

2525
string value;
2626
app.add_option("value", value, "A test value")->required();
27-
//test with long and short options and subcommands
28-
auto config = app.add_subcommand("configure", "Configure the project");
27+
// test with long and short options and subcommands
28+
auto config = app.add_subcommand("configure", "Configure the project");
2929
config->add_option("-S,--script-path", script_path, "Path to build script");
3030
config->add_option("-T,--toolchain-path", toolchain_path, "Compiler toolchain to use");
3131
config->add_option("-B,--build-dir", build_dir, "Build directory");

0 commit comments

Comments
 (0)