From a10a5a7bcdc59292275ef4b1d4163435a375a849 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Tue, 23 Apr 2013 12:32:13 -0500 Subject: [PATCH] adds lib::thread --- websocketpp/common/thread.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/websocketpp/common/thread.hpp b/websocketpp/common/thread.hpp index a82e7bacd8..411cd7daf8 100644 --- a/websocketpp/common/thread.hpp +++ b/websocketpp/common/thread.hpp @@ -49,9 +49,11 @@ namespace lib { #ifdef _WEBSOCKETPP_CPP11_THREAD_ using std::mutex; using std::lock_guard; + using std::thread; #else using boost::mutex; using boost::lock_guard; + using boost::thread; #endif } // namespace lib