Fix build warnings

This commit is contained in:
Paul Romano 2019-03-13 06:46:33 -05:00
parent 2ab24d85cd
commit 86c33fa7cb
5 changed files with 19 additions and 7 deletions

View file

@ -152,8 +152,7 @@ public:
int indx_; //!< An index to a Lattice universes or offsets array.
LatticeIter(Lattice &lat, int indx)
: lat_(lat),
indx_(indx)
: indx_(indx), lat_(lat)
{}
bool operator==(const LatticeIter &rhs) {return (indx_ == rhs.indx_);}