mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: dynamicCode: add missing default constructor
Used copy constructor for dictionary. Probably not necessary.
This commit is contained in:
@ -144,7 +144,8 @@ ${typeName}FixedValueFvPatch${FieldType}
|
||||
const ${typeName}FixedValueFvPatch${FieldType}& rhs
|
||||
)
|
||||
:
|
||||
parent_bctype(rhs)
|
||||
parent_bctype(rhs),
|
||||
dictionaryContent(rhs)
|
||||
{
|
||||
if (${verbose:-false})
|
||||
{
|
||||
|
||||
@ -144,7 +144,8 @@ ${typeName}FixedValuePointPatch${FieldType}
|
||||
const ${typeName}FixedValuePointPatch${FieldType}& rhs
|
||||
)
|
||||
:
|
||||
parent_bctype(rhs)
|
||||
parent_bctype(rhs),
|
||||
dictionaryContent(rhs)
|
||||
{
|
||||
if (${verbose:-false})
|
||||
{
|
||||
|
||||
@ -143,7 +143,8 @@ ${typeName}MixedValueFvPatch${FieldType}
|
||||
const ${typeName}MixedValueFvPatch${FieldType}& rhs
|
||||
)
|
||||
:
|
||||
parent_bctype(rhs)
|
||||
parent_bctype(rhs),
|
||||
dictionaryContent(rhs)
|
||||
{
|
||||
if (${verbose:-false})
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user