From: Danny Al-Gaaf Date: Wed, 1 Apr 2015 16:25:27 +0000 (+0200) Subject: common/Thread.h: mark copy/move ctor as explicit X-Git-Tag: v9.0.1~128^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d508510d708762ab95e6e20814e14269ad1320a6;p=ceph.git common/Thread.h: mark copy/move ctor as explicit Signed-off-by: Danny Al-Gaaf --- diff --git a/src/common/Thread.h b/src/common/Thread.h index 26c3d07c8c94..edc2a0a5970a 100644 --- a/src/common/Thread.h +++ b/src/common/Thread.h @@ -29,7 +29,7 @@ class Thread { void *entry_wrapper(); public: - Thread(const Thread& other); + explicit Thread(const Thread& other); const Thread& operator=(const Thread& other); Thread();