summaryrefslogtreecommitdiff
path: root/src/other_tools
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 12:34:05 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 15:41:50 +0200
commitab9ff1405f9dd27addb6106e6d6e3ea45c730cc4 (patch)
treeb7f2c3787752fb16f73b16e9e3343d2bf5e59d0f /src/other_tools
parent6f03f36201fa79f3802f3235779ec5a451287e21 (diff)
downloadjustbuild-ab9ff1405f9dd27addb6106e6d6e3ea45c730cc4.tar.gz
Name constexpr variables using kCamelCase.
Diffstat (limited to 'src/other_tools')
-rw-r--r--src/other_tools/just_mr/setup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/other_tools/just_mr/setup.cpp b/src/other_tools/just_mr/setup.cpp
index 0c884d86..1629402b 100644
--- a/src/other_tools/just_mr/setup.cpp
+++ b/src/other_tools/just_mr/setup.cpp
@@ -370,7 +370,7 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config,
mr_repos[repo] = *values[i];
}
// populate ALT_DIRS
- constexpr auto err_msg_format =
+ constexpr auto kErrMsgFormat =
"While performing {} {}:\nWhile populating fields for "
"repository {}:\nExpected value for key \"{}\" to be a "
"string, but found {}";
@@ -386,7 +386,7 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config,
// we expect a string
if (not val->IsString()) {
Logger::Log(LogLevel::Error,
- err_msg_format,
+ kErrMsgFormat,
multi_repo_tool_name,
interactive
? "setup-env"