From 44d6e82ea0c10fe5c798b22fa25c2186dc77a6c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 15 Nov 2012 13:35:08 +0000 Subject: [PATCH] os: Fix thread copy constructor. --- common/os_thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/os_thread.hpp b/common/os_thread.hpp index 5e9577b..9dc656e 100644 --- a/common/os_thread.hpp +++ b/common/os_thread.hpp @@ -301,7 +301,7 @@ namespace os { } inline - thread(thread &other) : + thread(const thread &other) : _native_handle(other._native_handle) { } -- 2.43.0