We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
inline
1 parent 840e2ff commit 1b89a64Copy full SHA for 1b89a64
include/boost/smart_ptr/detail/lightweight_thread.hpp
@@ -104,7 +104,7 @@ class lw_abstract_thread
104
105
#if defined( BOOST_HAS_PTHREADS )
106
107
-extern "C" void * lw_thread_routine( void * pv )
+extern "C" inline void * lw_thread_routine( void * pv )
108
{
109
std::unique_ptr<lw_abstract_thread> pt( static_cast<lw_abstract_thread *>( pv ) );
110
@@ -115,7 +115,7 @@ extern "C" void * lw_thread_routine( void * pv )
115
116
#else
117
118
-unsigned __stdcall lw_thread_routine( void * pv )
+inline unsigned __stdcall lw_thread_routine( void * pv )
119
120
121
0 commit comments