| 8 | public: |
| 9 | template <size_t N> |
| 10 | consteval StringHash(char const (&str)[N]) : StringHash(std::string_view{str}) {} |
| 11 | constexpr StringHash(std::string_view str) { |
| 12 | for (auto c : str) { |
| 13 | mHash ^= c; |
nothing calls this directly
no outgoing calls
no test coverage detected