dictionary: changes field scoping operator from "::" to '.'

This commit is contained in:
Henry
2012-10-12 12:47:54 +01:00
parent 7db3286f34
commit d40a374cbc
47 changed files with 106 additions and 100 deletions

View File

@ -141,7 +141,7 @@ void Foam::turbulenceFields::read(const dictionary& dict)
Info<< "storing fields:" << nl;
forAllConstIter(wordHashSet, fieldSet_, iter)
{
Info<< " " << modelName << "::" << iter.key() << nl;
Info<< " " << modelName << '.' << iter.key() << nl;
}
Info<< endl;
}

View File

@ -36,7 +36,7 @@ void Foam::turbulenceFields::processField
{
typedef GeometricField<Type, fvPatchField, volMesh> FieldType;
const word scopedName = modelName + "::" + fieldName;
const word scopedName = modelName + '.' + fieldName;
if (obr_.foundObject<FieldType>(scopedName))
{