| 84 | private : |
| 85 | |
| 86 | void registerFileError( const std::string &filePath, const std::string &errorMsg ) |
| 87 | { |
| 88 | FileErrors::accessor it; |
| 89 | if ( m_fileErrors.insert( it, filePath ) ) |
| 90 | { |
| 91 | it->second = errorMsg; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | static MurmurHash hashFn( const ComputeParameters ¶ms ) |
| 96 | { |