From 24527051177db895b8fc14ca0f6da2efc4166604 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 28 Mar 2008 20:44:45 +0000 Subject: [PATCH] Missing "inline" added. [SVN r43916] --- include/boost/detail/yield_k.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/detail/yield_k.hpp b/include/boost/detail/yield_k.hpp index 08dfc8f..e3f6917 100644 --- a/include/boost/detail/yield_k.hpp +++ b/include/boost/detail/yield_k.hpp @@ -45,7 +45,7 @@ namespace detail extern "C" void __stdcall Sleep( unsigned ms ); #endif -void yield( unsigned k ) +inline void yield( unsigned k ) { if( k < 4 ) { @@ -81,7 +81,7 @@ namespace boost namespace detail { -void yield( unsigned k ) +inline void yield( unsigned k ) { if( k < 4 ) {