COMP: dynamicCode: add missing default constructor

Used copy constructor for dictionary. Probably not
necessary.
This commit is contained in:
mattijs
2021-12-13 13:20:04 +00:00
parent 818a5c3dc2
commit eb3c806ff9
3 changed files with 6 additions and 3 deletions

View File

@ -144,7 +144,8 @@ ${typeName}FixedValueFvPatch${FieldType}
const ${typeName}FixedValueFvPatch${FieldType}& rhs const ${typeName}FixedValueFvPatch${FieldType}& rhs
) )
: :
parent_bctype(rhs) parent_bctype(rhs),
dictionaryContent(rhs)
{ {
if (${verbose:-false}) if (${verbose:-false})
{ {

View File

@ -144,7 +144,8 @@ ${typeName}FixedValuePointPatch${FieldType}
const ${typeName}FixedValuePointPatch${FieldType}& rhs const ${typeName}FixedValuePointPatch${FieldType}& rhs
) )
: :
parent_bctype(rhs) parent_bctype(rhs),
dictionaryContent(rhs)
{ {
if (${verbose:-false}) if (${verbose:-false})
{ {

View File

@ -143,7 +143,8 @@ ${typeName}MixedValueFvPatch${FieldType}
const ${typeName}MixedValueFvPatch${FieldType}& rhs const ${typeName}MixedValueFvPatch${FieldType}& rhs
) )
: :
parent_bctype(rhs) parent_bctype(rhs),
dictionaryContent(rhs)
{ {
if (${verbose:-false}) if (${verbose:-false})
{ {