mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Correct order of constructor initialisation list
This commit is contained in:
@ -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)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user