mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: rename dictionary::read<T> to dictionary::readEntry<T>
- avoids compiler ambiguity when virtual methods such as IOdictionary::read() exist. - the method was introduced in 1806, and was thus not yet widely used
This commit is contained in:
@ -112,7 +112,7 @@ Foam::boundaryInfo::boundaryInfo(const Time& runTime, const word& regionName)
|
||||
const dictionary& dict = boundaryDict_[patchI].dict();
|
||||
|
||||
names_[patchI] = dict.dictName();
|
||||
dict.read("type", types_[patchI]);
|
||||
dict.readEntry("type", types_[patchI]);
|
||||
if (polyPatch::constraintType(types_[patchI]))
|
||||
{
|
||||
constraint_[patchI] = true;
|
||||
|
||||
@ -120,12 +120,12 @@ Foam::dictionary Foam::solverTemplate::readFluidFieldTemplates
|
||||
else if (modelType == "RAS")
|
||||
{
|
||||
turbPropDict.subDict(modelType)
|
||||
.read("RASModel", turbulenceModel);
|
||||
.readEntry("RASModel", turbulenceModel);
|
||||
}
|
||||
else if (modelType == "LES")
|
||||
{
|
||||
turbPropDict.subDict(modelType)
|
||||
.read("LESModel", turbulenceModel);
|
||||
.readEntry("LESModel", turbulenceModel);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user