monitor: Do not allow TachSensor move

TachSensor uses the this pointer as the systemd callback
context for signal callbacks, which doesn't work with
move semantics.

Change-Id: I5e58fec9a7edfc457103d8a36f6076d90246f4f0
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/monitor/tach_sensor.hpp b/monitor/tach_sensor.hpp
index fbda37b..dd2222b 100644
--- a/monitor/tach_sensor.hpp
+++ b/monitor/tach_sensor.hpp
@@ -34,9 +34,11 @@
 
         TachSensor() = delete;
         TachSensor(const TachSensor&) = delete;
-        TachSensor(TachSensor&&) = default;
+        // TachSensor is not moveable since the this pointer is used as systemd
+        // callback context.
+        TachSensor(TachSensor&&) = delete;
         TachSensor& operator=(const TachSensor&) = delete;
-        TachSensor& operator=(TachSensor&&) = default;
+        TachSensor& operator=(TachSensor&&) = delete;
         ~TachSensor() = default;
 
         /**