Fix a clang++ gripe

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7571 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2017-02-21 02:50:10 +00:00
parent cecc098924
commit 9712447253
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ namespace
poly_generator (QVector<T> const& coeffs, size_t intervals, S scaling = [] (T x) {return x;})
: x_ {0}
, intervals_ {intervals}
, scaling_ {scaling}
, scaling_ (scaling)
, coeffs_ {coeffs}
{
}