From d508510d708762ab95e6e20814e14269ad1320a6 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Wed, 1 Apr 2015 18:25:27 +0200 Subject: [PATCH] common/Thread.h: mark copy/move ctor as explicit Signed-off-by: Danny Al-Gaaf --- src/common/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Thread.h b/src/common/Thread.h index 26c3d07c8c944..edc2a0a5970ab 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(); -- 2.39.5