Skip to content
Snippets Groups Projects
Commit a054f318 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: remove dubious bool list initialization

parent 4e6caf8d
Branches
Tags
No related merge requests found
......@@ -30,13 +30,13 @@ License
inline Foam::molecule::constantProperties::constantProperties()
:
siteReferencePositions_(Field<vector>(0)),
siteMasses_(List<scalar>(0)),
siteCharges_(List<scalar>(0)),
siteIds_(List<label>(0)),
pairPotentialSites_(List<bool>(false)),
electrostaticSites_(List<bool>(false)),
momentOfInertia_(diagTensor(0, 0, 0)),
siteReferencePositions_(),
siteMasses_(),
siteCharges_(),
siteIds_(),
pairPotentialSites_(),
electrostaticSites_(),
momentOfInertia_(Zero),
mass_(0)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment