mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: support HashTable iterator pointer dereference
This commit is contained in:
committed by
Andrew Heather
parent
d4eb17a9ff
commit
39c91d8440
@ -62,7 +62,7 @@ void MapLagrangianFields
|
||||
|
||||
forAllConstIters(fields, fieldIter)
|
||||
{
|
||||
const word& fieldName = fieldIter()->name();
|
||||
const word& fieldName = fieldIter->name();
|
||||
|
||||
Info<< " mapping lagrangian field " << fieldName << endl;
|
||||
|
||||
@ -101,7 +101,7 @@ void MapLagrangianFields
|
||||
|
||||
forAllConstIters(fieldFields, fieldIter)
|
||||
{
|
||||
const word& fieldName = fieldIter()->name();
|
||||
const word& fieldName = fieldIter->name();
|
||||
|
||||
Info<< " mapping lagrangian fieldField " << fieldName << endl;
|
||||
|
||||
@ -153,7 +153,7 @@ void MapLagrangianFields
|
||||
|
||||
forAllConstIters(fieldFields, fieldIter)
|
||||
{
|
||||
const word& fieldName = fieldIter()->name();
|
||||
const word& fieldName = fieldIter->name();
|
||||
|
||||
Info<< " mapping lagrangian fieldField " << fieldName << endl;
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ void UnMapped(const IOobjectList& objects)
|
||||
|
||||
forAllConstIters(fields, fieldIter)
|
||||
{
|
||||
mvBak(fieldIter()->objectPath(), "unmapped");
|
||||
mvBak(fieldIter->objectPath(), "unmapped");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user