BUG: Correct order of constructor initialisation list

This commit is contained in:
laurence
2013-04-15 17:09:49 +01:00
parent 74984ab295
commit 9422ad8835

View File

@ -52,7 +52,6 @@ Foam::cellSizeAndAlignmentControl::cellSizeAndAlignmentControl
:
runTime_(runTime),
defaultCellSize_(defaultCellSize),
name_(name),
forceInitialPointInsertion_
(
controlFunctionDict.lookupOrDefault<Switch>
@ -60,7 +59,8 @@ Foam::cellSizeAndAlignmentControl::cellSizeAndAlignmentControl
"forceInitialPointInsertion",
"off"
)
)
),
name_(name)
{}