mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use HashTable iterator 'val()' method instead of 'object()'
This commit is contained in:
@ -35,10 +35,10 @@ inline void Foam::Detail::STLAsciiParse::beginSolid(word solidName)
|
||||
auto iter = nameLookup_.cfind(solidName);
|
||||
if (iter.found())
|
||||
{
|
||||
if (groupId_ != iter.object())
|
||||
if (groupId_ != iter.val())
|
||||
{
|
||||
sorted_ = false; // Group appeared out of order
|
||||
groupId_ = iter.object();
|
||||
groupId_ = iter.val();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user