diff options
Diffstat (limited to 'common/accel-logarithmic.hpp')
| -rw-r--r-- | common/accel-logarithmic.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/accel-logarithmic.hpp b/common/accel-logarithmic.hpp index b628327..928eda9 100644 --- a/common/accel-logarithmic.hpp +++ b/common/accel-logarithmic.hpp @@ -9,7 +9,7 @@ namespace rawaccel { /// <summary> Struct to hold logarithmic acceleration implementation. </summary> struct accel_logarithmic : accel_base { - accel_logarithmic(accel_args args) : accel_base(args) {} + using accel_base::accel_base; inline double accelerate(double speed) const { //f(x) = log(m*x+1) |