Skip to content
Snippets Groups Projects
Commit b8031d59 authored by Henry Weller's avatar Henry Weller
Browse files

etc/codeTemplates/BC: Use Use 'Zero' rather than 'pTraits<Type>::zero' to initialize to 0

parent 68f37e71
No related branches found
No related tags found
1 merge request!33Merge foundation
......@@ -50,15 +50,15 @@ CONSTRUCT
:
PARENT(p, iF),
scalarData_(0.0),
data_(pTraits<TYPE>::zero),
fieldData_(p.size(), pTraits<TYPE>::zero),
data_(Zero),
fieldData_(p.size(), Zero),
timeVsData_(),
wordData_("wordDefault"),
labelData_(-1),
boolData_(false)
{
this->refValue() = pTraits<TYPE>::zero;
this->refGrad() = pTraits<TYPE>::zero;
this->refValue() = Zero;
this->refGrad() = Zero;
this->valueFraction() = 0.0;
}
......@@ -81,7 +81,7 @@ CONSTRUCT
labelData_(-1),
boolData_(false)
{
this->refGrad() = pTraits<TYPE>::zero;
this->refGrad() = Zero;
this->valueFraction() = 0.0;
this->refValue() = FIELD("fieldData", dict, p.size());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment