STYLE: consistent use of wordHashSet instead of HashSet<word>

- the wordHashSet typedef is always available when HashSet has been
  included.

- use default HashTable key (word) instead of explicitly mentioning it
This commit is contained in:
Mark Olesen
2018-02-22 11:19:47 +01:00
parent f95f8bf512
commit 37e248c74b
54 changed files with 108 additions and 117 deletions

View File

@ -102,7 +102,7 @@ class functionObjectList
//- Search the specified directory for functionObject
//- configuration files, add to the given map and recurse
static void listDir(const fileName& dir, HashSet<word>& foMap);
static void listDir(const fileName& dir, wordHashSet& foMap);
//- Disallow default bitwise copy construct
functionObjectList(const functionObjectList&) = delete;