Disable zone move constructor

To ensure no future enhancements attempt to store a reference to the
zone object that are used to allow zone function calls.

Change-Id: I0dc266445abdbce86b5fd505589aa96b7730c29a
Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
diff --git a/control/zone.hpp b/control/zone.hpp
index dbf4378..bc08f48 100644
--- a/control/zone.hpp
+++ b/control/zone.hpp
@@ -36,7 +36,7 @@
 
         Zone() = delete;
         Zone(const Zone&) = delete;
-        Zone(Zone&&) = default;
+        Zone(Zone&&) = delete;
         Zone& operator=(const Zone&) = delete;
         Zone& operator=(Zone&&) = delete;
         ~Zone() = default;