STYLE: hash constructors with power-of-two

- use 1024 instead of 1000 since it will be changed internally to 1024 anyhow.
This commit is contained in:
Mark Olesen
2017-07-05 10:46:50 +02:00
parent efc21270ea
commit 1bcb454f6d
3 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ int main(int argc, char *argv[])
std::vector<bool> stlVector(n, true);
labelHashSet emptyHash;
labelHashSet fullHash(1000);
labelHashSet fullHash(1024);
for (label i = 0; i < n; i++)
{
fullHash.insert(i);