From 80ffeaf6d6cb00106991bb7cc202c957c3e10d34 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Sat, 26 Sep 2020 15:13:53 -0700 Subject: Remove logarithm --- common/rawaccel.hpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'common/rawaccel.hpp') 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 = {}; -- cgit v1.2.3