mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
small fix to array initialization
This commit is contained in:
parent
ac59bb7564
commit
d63f64226e
1 changed files with 1 additions and 1 deletions
|
|
@ -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?
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue