]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/Thread.h: mark copy/move ctor as explicit
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Wed, 1 Apr 2015 16:25:27 +0000 (18:25 +0200)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Wed, 15 Apr 2015 10:34:50 +0000 (12:34 +0200)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
src/common/Thread.h

index 26c3d07c8c94488108f0468f28e10b90a2f1d2a3..edc2a0a5970ab95c457e4c0edd5404c198547392 100644 (file)
@@ -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();