From f347a732a626d4c653e8964b34a7db5bdb133fba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 10:51:26 +0100 Subject: [PATCH] style: clang-tidy auto fixes (#2375) --- src/util/build/Build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/build/Build.cpp b/src/util/build/Build.cpp index f05f9fc0..095b0fbf 100644 --- a/src/util/build/Build.cpp +++ b/src/util/build/Build.cpp @@ -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; }