From: Danny Al-Gaaf Date: Tue, 24 Mar 2015 09:06:42 +0000 (+0100) Subject: osd/PG.h: mark copy ctor explicit X-Git-Tag: v9.0.1~128^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d36f665aa6b72c0435e039e80bb6c15d5dc7ccfe;p=ceph.git osd/PG.h: mark copy ctor explicit Signed-off-by: Danny Al-Gaaf --- diff --git a/src/osd/PG.h b/src/osd/PG.h index 6415e1c0790d..3f1b2d93a21d 100644 --- a/src/osd/PG.h +++ b/src/osd/PG.h @@ -2004,7 +2004,7 @@ public: private: // Prevent copying - PG(const PG& rhs); + explicit PG(const PG& rhs); PG& operator=(const PG& rhs); const spg_t pg_id; uint64_t peer_features;