build: Fix compilation warnings/errors with clang-700.0.72 (apple LLVM 7.0.0)

Change-Id: Iedbebae03740a5d779c84e78d22b74dd9b9009f7
Refs: #3209
diff --git a/daemon/face/ethernet-factory.hpp b/daemon/face/ethernet-factory.hpp
index 2441571..5b1666c 100644
--- a/daemon/face/ethernet-factory.hpp
+++ b/daemon/face/ethernet-factory.hpp
@@ -85,7 +85,7 @@
   getMulticastFaces() const;
 
   virtual std::list<shared_ptr<const Channel>>
-  getChannels() const;
+  getChannels() const DECL_OVERRIDE;
 
 private:
   /**
diff --git a/daemon/face/tcp-factory.hpp b/daemon/face/tcp-factory.hpp
index 2667915..315bacd 100644
--- a/daemon/face/tcp-factory.hpp
+++ b/daemon/face/tcp-factory.hpp
@@ -86,7 +86,7 @@
              const FaceConnectFailedCallback& onConnectFailed) DECL_OVERRIDE;
 
   virtual std::list<shared_ptr<const Channel> >
-  getChannels() const;
+  getChannels() const DECL_OVERRIDE;
 
 PUBLIC_WITH_TESTS_ELSE_PRIVATE:
 
diff --git a/daemon/face/udp-factory.hpp b/daemon/face/udp-factory.hpp
index 8a4e87a..1a3714c 100644
--- a/daemon/face/udp-factory.hpp
+++ b/daemon/face/udp-factory.hpp
@@ -150,7 +150,7 @@
              const FaceConnectFailedCallback& onConnectFailed) DECL_OVERRIDE;
 
   virtual std::list<shared_ptr<const Channel>>
-  getChannels() const;
+  getChannels() const DECL_OVERRIDE;
 
   /**
    * \brief Get map of configured multicast faces
diff --git a/daemon/face/unix-stream-factory.hpp b/daemon/face/unix-stream-factory.hpp
index ecb679b..61ef3de 100644
--- a/daemon/face/unix-stream-factory.hpp
+++ b/daemon/face/unix-stream-factory.hpp
@@ -66,7 +66,7 @@
              const FaceConnectFailedCallback& onConnectFailed) DECL_OVERRIDE;
 
   virtual std::list<shared_ptr<const Channel> >
-  getChannels() const;
+  getChannels() const DECL_OVERRIDE;
 
 private:
   /**
diff --git a/daemon/face/websocket-factory.hpp b/daemon/face/websocket-factory.hpp
index 3859893..7271b0a 100644
--- a/daemon/face/websocket-factory.hpp
+++ b/daemon/face/websocket-factory.hpp
@@ -86,7 +86,7 @@
              const FaceConnectFailedCallback& onConnectFailed) DECL_OVERRIDE;
 
   virtual std::list<shared_ptr<const Channel> >
-  getChannels() const;
+  getChannels() const DECL_OVERRIDE;
 
 private:
   /**