COMP: mismatch of inline some HashTable methods

This commit is contained in:
Mark Olesen
2017-11-08 20:44:43 +01:00
parent c7392f7fb0
commit e289c78027
2 changed files with 2 additions and 2 deletions

View File

@ -737,7 +737,7 @@ protected:
inline Iterator(bool, table_type* tbl);
//- Construct by finding key in hash table
inline Iterator(table_type* tbl, const Key& key);
Iterator(table_type* tbl, const Key& key);
// Protected Member Functions

View File

@ -60,7 +60,7 @@ inline bool Foam::HashTable<T, Key, Hash>::empty() const
template<class T, class Key, class Hash>
bool Foam::HashTable<T, Key, Hash>::found(const Key& key) const
inline bool Foam::HashTable<T, Key, Hash>::found(const Key& key) const
{
if (size_)
{