| 406 | |
| 407 | template<class T, class Key, class Hash> |
| 408 | inline typename Foam::HashTable<T, Key, Hash>::iterator |
| 409 | Foam::HashTable<T, Key, Hash>::iterator::operator++(int) |
| 410 | { |
| 411 | iterator old = *this; |
| 412 | this->increment(); |
| 413 | return old; |
| 414 | } |
| 415 | |
| 416 | |
| 417 | template<class T, class Key, class Hash> |