$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: anthony_at_[hidden]
Date: 2007-12-04 06:44:25
Author: anthonyw
Date: 2007-12-04 06:44:25 EST (Tue, 04 Dec 2007)
New Revision: 41683
URL: http://svn.boost.org/trac/boost/changeset/41683
Log:
don't dllexport/dllimport inline functions
Text files modified: 
   trunk/boost/thread/pthread/thread.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/thread/pthread/thread.hpp
==============================================================================
--- trunk/boost/thread/pthread/thread.hpp	(original)
+++ trunk/boost/thread/pthread/thread.hpp	2007-12-04 06:44:25 EST (Tue, 04 Dec 2007)
@@ -208,7 +208,7 @@
             ~restore_interruption();
         };
 
-        BOOST_THREAD_DECL inline thread::id get_id()
+        inline thread::id get_id()
         {
             return thread::id(pthread_self());
         }
@@ -217,13 +217,13 @@
         BOOST_THREAD_DECL bool interruption_enabled();
         BOOST_THREAD_DECL bool interruption_requested();
 
-        BOOST_THREAD_DECL inline void yield()
+        inline void yield()
         {
             thread::yield();
         }
         
         template<typename TimeDuration>
-        BOOST_THREAD_DECL inline void sleep(TimeDuration const& rel_time)
+        inline void sleep(TimeDuration const& rel_time)
         {
             thread::sleep(get_system_time()+rel_time);
         }