Applied readability-magic-numbers clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-20 23:49:20 +01:00
parent 0687c3093e
commit 134ad77f5c
8 changed files with 38 additions and 13 deletions

View File

@@ -27,8 +27,7 @@
#include <type_traits>
#include <vector>
namespace clanguml {
namespace util {
namespace clanguml::util {
std::string ltrim(const std::string &s);
std::string rtrim(const std::string &s);
@@ -247,5 +246,6 @@ void for_each_if(const T &collection, C &&cond, F &&func)
});
}
} // namespace util
} // namespace clanguml
std::size_t hash_seed(std::size_t seed);
} // namespace clanguml::util