Removed the unnecessary ".0" from dimensionedScalar constructors

This commit is contained in:
Henry Weller
2018-12-19 14:24:41 +00:00
parent 2f7f0a2f11
commit 6faadcb45c
117 changed files with 254 additions and 254 deletions

View File

@ -1119,7 +1119,7 @@ int main(int argc, char *argv[])
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("cellId", dimless, 0.0)
dimensionedScalar("cellId", dimless, 0)
);
forAll(foamCellMap, celli)
@ -1139,7 +1139,7 @@ int main(int argc, char *argv[])
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("cellType", dimless, 0.0)
dimensionedScalar("cellType", dimless, 0)
);
forAll(foamCellType, celli)