| 10 | struct PluginHashImpl |
| 11 | { |
| 12 | static constexpr unsigned int Hash(const char (&str)[N]) |
| 13 | { |
| 14 | return (PluginHashImpl<N, I - 1>::Hash(str) ^ static_cast<unsigned int>(str[I - 1])) * 16777619u; |
| 15 | } |
| 16 | }; |
| 17 | |
| 18 | template <unsigned int N> |
nothing calls this directly
no outgoing calls
no test coverage detected