summaryrefslogtreecommitdiff
path: root/src/buildtool/common/cli.hpp
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2023-01-31 09:00:00 +0100
committerKlaus T. Aehlig <aehlig@linta.de>2023-02-01 12:26:08 +0100
commit4d5724b6d71f5251f8945056f278b3142f66f1b2 (patch)
treec2a4f6e301b21fbbd7a3c1d8227306d8d88771d1 /src/buildtool/common/cli.hpp
parent63474489c46af081db134f8778eea03c3705cda3 (diff)
downloadjustbuild-4d5724b6d71f5251f8945056f278b3142f66f1b2.tar.gz
Update fmtlib to version 9.1.0
Co-authored-by: Michael Thies <mail@mhthies.de>
Diffstat (limited to 'src/buildtool/common/cli.hpp')
-rw-r--r--src/buildtool/common/cli.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/common/cli.hpp b/src/buildtool/common/cli.hpp
index 7c2cd65c..feb58a6d 100644
--- a/src/buildtool/common/cli.hpp
+++ b/src/buildtool/common/cli.hpp
@@ -176,9 +176,9 @@ static inline auto SetupLogArguments(
},
fmt::format("Log limit (higher is more verbose) in interval [{},{}] "
"(Default: {}).",
- kFirstLogLevel,
- kLastLogLevel,
- kDefaultLogLevel))
+ static_cast<int>(kFirstLogLevel),
+ static_cast<int>(kLastLogLevel),
+ static_cast<int>(kDefaultLogLevel)))
->type_name("NUM");
app->add_flag("--plain-log",
clargs->plain_log,