| 77 | |
| 78 | template<class T, class Key, class Hash> |
| 79 | inline bool Foam::HashTable<T, Key, Hash>::insert |
| 80 | ( |
| 81 | const Key& key, |
| 82 | const T& newEntry |
| 83 | ) |
| 84 | { |
| 85 | return this->set(key, newEntry, true); |
| 86 | } |
| 87 | |
| 88 | |
| 89 | template<class T, class Key, class Hash> |
no test coverage detected