STYLE: consistency updates

This commit is contained in:
Andrew Heather
2016-09-27 15:17:55 +01:00
parent 89d9fd1550
commit 3dbd39146c
242 changed files with 1933 additions and 1933 deletions

View File

@ -50,14 +50,14 @@ namespace functionObjects
bool Foam::functionObjects::writeDictionary::tryDirectory
(
const label dictI,
const label dicti,
const word& location,
bool& firstDict
)
{
IOobject dictIO
(
dictNames_[dictI],
dictNames_[dicti],
location,
obr_,
IOobject::MUST_READ,
@ -69,7 +69,7 @@ bool Foam::functionObjects::writeDictionary::tryDirectory
{
IOdictionary dict(dictIO);
if (dict.digest() != digests_[dictI])
if (dict.digest() != digests_[dicti])
{
if (firstDict)
{
@ -84,7 +84,7 @@ bool Foam::functionObjects::writeDictionary::tryDirectory
IOobject::writeDivider(Info);
digests_[dictI] = dict.digest();
digests_[dicti] = dict.digest();
}
return true;

View File

@ -75,7 +75,7 @@ class writeDictionary
//- Helper function to write the dictionary if found at location
bool tryDirectory
(
const label dictI,
const label dicti,
const word& location,
bool& firstDict
);