style: clang-tidy auto fixes (#2375)

This commit is contained in:
github-actions[bot]
2025-07-29 10:51:26 +01:00
committed by GitHub
parent 0e2ba4a64e
commit f347a732a6

View File

@@ -26,12 +26,12 @@ namespace util::build {
#ifndef CLIO_VERSION
#error "CLIO_VERSION must be defined"
#endif
static constexpr char versionString[] = CLIO_VERSION;
static constexpr char kVERSION_STRING[] = CLIO_VERSION;
std::string const&
getClioVersionString()
{
static std::string const value = versionString; // NOLINT(readability-identifier-naming)
static std::string const value = kVERSION_STRING; // NOLINT(readability-identifier-naming)
return value;
}