File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#include < Robocode/Lerp.h>
22
3- Lerp::Lerp (const double v, const std::span<const double > x, const std::optional<double > z)
3+ Lerp::Lerp (const std::span<const double > x, const double v , const std::optional<double > z)
44{
55 if (x.empty ())
66 {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class Lerp final
1414public:
1515
1616 Lerp (){};
17- Lerp (const double v, const std::span<const double > x, const std::optional<double > z = std::nullopt );
17+ Lerp (const std::span<const double > x, const double v , const std::optional<double > z = std::nullopt );
1818 Lerp (const Lerp& other);
1919 Lerp& operator =(const Lerp& other);
2020
@@ -30,6 +30,6 @@ class Lerp final
3030 int u;
3131 std::optional<double > z;
3232 }
33- config;
33+ config{} ;
3434
3535};
You can’t perform that action at this time.
0 commit comments