STYLE: adjust some line lengths, doxygen comments

This commit is contained in:
Mark Olesen
2017-07-20 13:50:35 +02:00
parent f304c7e830
commit 2c69b7d7c4
27 changed files with 117 additions and 79 deletions

View File

@ -334,15 +334,15 @@ bool Foam::functionObjectList::readFunctionObject
Foam::functionObjectList::functionObjectList
(
const Time& t,
const Time& runTime,
const bool execution
)
:
PtrList<functionObject>(),
digests_(),
indices_(),
time_(t),
parentDict_(t.controlDict()),
time_(runTime),
parentDict_(runTime.controlDict()),
stateDictPtr_(),
execution_(execution),
updated_(false)
@ -351,7 +351,7 @@ Foam::functionObjectList::functionObjectList
Foam::functionObjectList::functionObjectList
(
const Time& t,
const Time& runTime,
const dictionary& parentDict,
const bool execution
)
@ -359,7 +359,7 @@ Foam::functionObjectList::functionObjectList
PtrList<functionObject>(),
digests_(),
indices_(),
time_(t),
time_(runTime),
parentDict_(parentDict),
stateDictPtr_(),
execution_(execution),

View File

@ -130,7 +130,7 @@ public:
//- Construct from Time, a dictionary with "functions" entry
// and the execution setting.
// \param[in] t - the other Time instance to construct from
// \param[in] runTime - the other Time instance to construct from
// \param[in] parentDict - the parent dictionary containing
// a "functions" entry, which can either be a list or a dictionary
// of functionObject specifications.