small fix to array initialization

This commit is contained in:
Gavin Ridley 2021-04-22 17:30:40 -04:00
parent ac59bb7564
commit d63f64226e

View file

@ -67,7 +67,7 @@ public:
int cell {-1};
int universe {-1};
int lattice {-1};
array<int, 3> lattice_i {-1, -1, -1};
array<int, 3> lattice_i {{-1, -1, -1}};
bool rotated {false}; //!< Is the level rotated?
};