Clang x64 warns that __stdcall is ignored, so don't use it there

This commit is contained in:
Peter Dimov
2018-03-08 06:53:28 +02:00
parent f16fbdce26
commit 67fab5c9ec

View File

@@ -60,16 +60,27 @@ namespace detail
{ {
#if !defined( BOOST_USE_WINDOWS_H ) && !BOOST_PLAT_WINDOWS_RUNTIME #if !defined( BOOST_USE_WINDOWS_H ) && !BOOST_PLAT_WINDOWS_RUNTIME
#if defined(__clang__) && defined(__x86_64__)
// clang x64 warns that __stdcall is ignored
# define BOOST_SP_STDCALL
#else
# define BOOST_SP_STDCALL __stdcall
#endif
#if !BOOST_COMP_CLANG || !defined __MINGW32__ #if !BOOST_COMP_CLANG || !defined __MINGW32__
extern "C" void __stdcall Sleep( unsigned long ms ); extern "C" void BOOST_SP_STDCALL Sleep( unsigned long ms );
#else #else
#include <_mingw.h> #include <_mingw.h>
#if !defined __MINGW64_VERSION_MAJOR #if !defined __MINGW64_VERSION_MAJOR
extern "C" void __stdcall Sleep( unsigned long ms ); extern "C" void BOOST_SP_STDCALL Sleep( unsigned long ms );
#else #else
extern "C" __declspec(dllimport) void __stdcall Sleep( unsigned long ms ); extern "C" __declspec(dllimport) void BOOST_SP_STDCALL Sleep( unsigned long ms );
#endif #endif
#endif #endif
#undef BOOST_SP_STDCALL
#endif #endif
inline void yield( unsigned k ) inline void yield( unsigned k )