diff options
Diffstat (limited to 'common/rawaccel.hpp')
| -rw-r--r-- | common/rawaccel.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/rawaccel.hpp b/common/rawaccel.hpp index 2e627c9..14db883 100644 --- a/common/rawaccel.hpp +++ b/common/rawaccel.hpp @@ -8,7 +8,6 @@ #include "accel-linear.hpp" #include "accel-classic.hpp" -#include "accel-logarithm.hpp" #include "accel-natural.hpp" #include "accel-naturalgain.hpp" #include "accel-power.hpp" @@ -84,7 +83,6 @@ namespace rawaccel { case accel_mode::natural: return vis(var.u.natural); case accel_mode::naturalgain: return vis(var.u.naturalgain); case accel_mode::power: return vis(var.u.power); - case accel_mode::logarithm: return vis(var.u.logarithm); case accel_mode::motivity: return vis(var.u.motivity); default: return vis(var.u.noaccel); } @@ -101,7 +99,6 @@ namespace rawaccel { accel_natural natural; accel_naturalgain naturalgain; accel_power power; - accel_logarithm logarithm; accel_motivity motivity; accel_noaccel noaccel = {}; } u = {}; |