| 110 | "fl::Hash<T> only supports POD types (integrals, floats, " |
| 111 | "etc.), you need to define your own hash."); |
| 112 | u32 operator()(const T &key) const FL_NOEXCEPT { |
| 113 | return MurmurHash3_x86_32(&key, sizeof(T)); |
| 114 | } |
| 115 | }; |
| 116 | |
| 117 | template <typename T> struct FastHash { |
nothing calls this directly
no test coverage detected