Reorder member variables to avoid order compile issue. Refs #1962

This commit is contained in:
aprilnovak 2022-02-04 10:24:38 -06:00
parent c6ad93d681
commit e8982ea981

View file

@ -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;