From: Danny Al-Gaaf Date: Thu, 19 Mar 2015 21:11:17 +0000 (+0100) Subject: msg/Dispatcher.h: make copy/move ctor explicit X-Git-Tag: v9.0.1~128^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ed8c2847097446f8fecb8eacf96b4b5119eea11d;p=ceph.git msg/Dispatcher.h: make copy/move ctor explicit Signed-off-by: Danny Al-Gaaf --- diff --git a/src/msg/Dispatcher.h b/src/msg/Dispatcher.h index 523c0165341c..a0a3b37b0403 100644 --- a/src/msg/Dispatcher.h +++ b/src/msg/Dispatcher.h @@ -192,7 +192,7 @@ public: protected: CephContext *cct; private: - Dispatcher(const Dispatcher &rhs); + explicit Dispatcher(const Dispatcher &rhs); Dispatcher& operator=(const Dispatcher &rhs); };