Commit 7096d0dc authored by Lázár Bence Kis's avatar Lázár Bence Kis
Browse files

BezierInterpolator fix

parent 79720d55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ struct BezierInterpolator : public Interpolator<T> {

    std::unique_ptr<Interpolator<T>> clone() const override
    {
        return std::make_unique<BezierInterpolator<T>>(*this);
        return std::make_unique<BezierInterpolator<T, Method>>(*this);
    }

private: