presence: Delete some default move ops

Fix clang-tidy errors like:
```
../presence/fallback.hpp:34:15: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted]
```

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I6186d87618202c6e2151462edfa36d15b816286e
diff --git a/presence/rpolicy.hpp b/presence/rpolicy.hpp
index 259a31b..94060f4 100644
--- a/presence/rpolicy.hpp
+++ b/presence/rpolicy.hpp
@@ -26,10 +26,10 @@
 class RedundancyPolicy
 {
   public:
-    RedundancyPolicy(const RedundancyPolicy&) = default;
-    RedundancyPolicy& operator=(const RedundancyPolicy&) = default;
-    RedundancyPolicy(RedundancyPolicy&&) = default;
-    RedundancyPolicy& operator=(RedundancyPolicy&&) = default;
+    RedundancyPolicy(const RedundancyPolicy&) = delete;
+    RedundancyPolicy& operator=(const RedundancyPolicy&) = delete;
+    RedundancyPolicy(RedundancyPolicy&&) = delete;
+    RedundancyPolicy& operator=(RedundancyPolicy&&) = delete;
     virtual ~RedundancyPolicy() = default;
 
     /**