| 154 | _lookuparray.clear(); |
| 155 | } |
| 156 | void copy(StringToIntMap const& source) { |
| 157 | _hashmap = source._hashmap; |
| 158 | _lookuparray = source._lookuparray; |
| 159 | } |
| 160 | std::string lookupString(int hashValue) const { |
| 161 | return (hashValue < _lookuparray.size()) ? _lookuparray[hashValue] : "<missing>"; |
| 162 | } |
no outgoing calls
no test coverage detected