From e1f5fbdc33a4058f5bae613b2ae40848e8262bb2 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Thu, 4 Oct 2012 16:50:46 +0000 Subject: [PATCH] Thread: fix typo introduced while making get_id inline on posix [SVN r80845] --- include/boost/thread/detail/thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/thread/detail/thread.hpp b/include/boost/thread/detail/thread.hpp index 5cbb828e..edfd1357 100644 --- a/include/boost/thread/detail/thread.hpp +++ b/include/boost/thread/detail/thread.hpp @@ -537,7 +537,7 @@ namespace boost #ifdef BOOST_THREAD_PLATFORM_PTHREAD inline id get_id() const BOOST_NOEXCEPT; #else - id BOOST_THREAD_DECL get_id() const BOOST_NOEXCEPT; + id get_id() const BOOST_NOEXCEPT; #endif