style: clang-tidy auto fixes (#2411)

This commit is contained in:
github-actions[bot]
2025-08-08 10:49:43 +01:00
committed by GitHub
parent 4aa2ca94de
commit c83be63b9c
3 changed files with 2 additions and 3 deletions

View File

@@ -92,7 +92,7 @@ benchmarkConcurrentFileLogging(benchmark::State& state)
threads.emplace_back([threadNum, messagesPerThread, &barrier]() {
barrier.arrive_and_wait();
Logger threadLogger("Thread_" + std::to_string(threadNum));
Logger const threadLogger("Thread_" + std::to_string(threadNum));
for (size_t messageNum = 0; messageNum < messagesPerThread; ++messageNum) {
LOG(threadLogger.info()) << "Test log message #" << messageNum;