Skip to content

Commit

Permalink
cli: fix compilation with C++20 (even though it is not required)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Liebender committed Jan 20, 2025
1 parent feee0c5 commit 128f058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ int main(int argc, char const* const* argv) {
// clang-format on

if (args.count("help")) {
fmt::println( opts.help());
fmt::println("{}", opts.help());
return 0;
}

Expand Down Expand Up @@ -248,4 +248,4 @@ int main(int argc, char const* const* argv) {
}

return 0;
}
}

0 comments on commit 128f058

Please sign in to comment.