mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Merge pull request #1963 from aprilnovak/fix-reorder
Reorder member variables to avoid order compile issue.
This commit is contained in:
commit
6c643bbb7f
1 changed files with 1 additions and 1 deletions
|
|
@ -145,8 +145,8 @@ public:
|
|||
: next_index {_index}, max_surface {_max_surface}, distance {_distance}
|
||||
{}
|
||||
int next_index {-1};
|
||||
double distance {INFTY};
|
||||
bool max_surface {true};
|
||||
double distance {INFTY};
|
||||
bool operator<(const MeshDistance& o) const
|
||||
{
|
||||
return distance < o.distance;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue