Applied readability-magic-numbers clang-tidy fixes
This commit is contained in:
@@ -131,8 +131,8 @@ template <> struct hash<clanguml::common::model::filesystem_path> {
|
||||
|
||||
std::size_t seed = key.size();
|
||||
for (const auto &ns : key) {
|
||||
seed ^= std::hash<std::string>{}(ns) + 0x6a3712b5 + (seed << 6) +
|
||||
(seed >> 2);
|
||||
seed ^=
|
||||
std::hash<std::string>{}(ns) + clanguml::util::hash_seed(seed);
|
||||
}
|
||||
|
||||
return seed;
|
||||
|
||||
Reference in New Issue
Block a user