STYLE: cleanup doxygen for HashTable/HashSet

- remove stray canonicalSize declaration
This commit is contained in:
Mark Olesen
2017-04-11 09:32:53 +02:00
parent ef88dd3e44
commit 31da01d1ea
4 changed files with 61 additions and 65 deletions

View File

@ -397,7 +397,7 @@ Foam::label Foam::HashTable<T, Key, Hash>::erase(const UList<Key>& keys)
{
if (erase(keys[keyI]))
{
count++;
++count;
}
}
@ -420,7 +420,7 @@ Foam::label Foam::HashTable<T, Key, Hash>::erase
{
if (rhs.found(iter.key()) && erase(iter))
{
count++;
++count;
}
}