style: clang-tidy auto fixes (#2112)

Fixes #2111. Please review and commit clang-tidy fixes.

Co-authored-by: godexsoft <385326+godexsoft@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-05-14 11:28:40 +01:00
committed by GitHub
parent 2d52966806
commit a369381594
6 changed files with 9 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ using namespace util;
TEST(StringHashTest, HashesConsistently)
{
StringHash hasher;
StringHash const hasher;
std::string const stdString = "test string";
std::string_view const strView = "test string";
@@ -43,7 +43,7 @@ TEST(StringHashTest, HashesConsistently)
TEST(StringHashTest, TransparentLookup)
{
std::unordered_set<std::string, StringHash, std::equal_to<>> stringSet{"hello world"};
std::unordered_set<std::string, StringHash, std::equal_to<>> const stringSet{"hello world"};
std::string const stdString = "hello world";
std::string_view const strView = "hello world";
@@ -58,7 +58,7 @@ TEST(StringHashTest, TransparentLookup)
TEST(StringHashTest, EmptyStrings)
{
StringHash hasher;
StringHash const hasher;
std::string const emptyStdString;
std::string_view const emptyStrView;