| 21 | } |
| 22 | |
| 23 | template <class T> inline void HashCombine( std::size_t& seed, const T& v ) { |
| 24 | std::hash<T> hasher; |
| 25 | seed ^= hasher( v ) + 0x9e3779b9 + ( seed << 6 ) + ( seed >> 2 ); |
| 26 | } |
| 27 | |
| 28 | size_t StyleSheet::nodeHash( const std::string& tag, const std::string& id ) { |
| 29 | size_t seed = 0; |
no outgoing calls
no test coverage detected