Skip to content

Commit

Permalink
build with C++17
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Smith committed Aug 3, 2023
1 parent c0db8ec commit 6b1c81d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions six/modules/c++/six/include/six/ErrorStatistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,11 @@ struct UnmodeledS final
{
struct Xrow_Ycol final
{
double CorrCoefZero = 0.0;
double CorrCoefZero = 0.0;
double DecorrRate = 0.0;
};
Xrow_Ycol Xrow;
Xrow_Ycol Ycol;
Xrow_Ycol Xrow{};
Xrow_Ycol Ycol{};
};
XsElement_minOccurs0<Decorr> unmodeledDecorr{ "UnmodeledDecorr" };
};
Expand Down

0 comments on commit 6b1c81d

Please sign in to comment.