mirror of
https://github.com/boostorg/function_types.git
synced 2025-07-30 04:47:21 +02:00
Disable _ccs tests when _M_IX86 isn't defined (MSVC 32 bit)
This commit is contained in:
@ -6,6 +6,13 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#if !defined(_M_IX86)
|
||||
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
BOOST_PRAGMA_MESSAGE("Test skipped because _M_IX86 is not defined")
|
||||
|
||||
#else
|
||||
|
||||
#define BOOST_FT_AUTODETECT_CALLING_CONVENTIONS
|
||||
|
||||
#include <boost/mpl/assert.hpp>
|
||||
@ -48,3 +55,4 @@ BOOST_MPL_ASSERT((
|
||||
>
|
||||
));
|
||||
|
||||
#endif
|
||||
|
@ -6,6 +6,13 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#if !defined(_M_IX86)
|
||||
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
BOOST_PRAGMA_MESSAGE("Test skipped because _M_IX86 is not defined")
|
||||
|
||||
#else
|
||||
|
||||
#define BOOST_FT_AUTODETECT_CALLING_CONVENTIONS
|
||||
|
||||
#include <boost/mpl/assert.hpp>
|
||||
@ -69,3 +76,4 @@ BOOST_MPL_ASSERT_NOT((
|
||||
ft::is_callable_builtin< ft::member_function_pointer<mpl::vector<int, C &>, cc>::type, dc >
|
||||
));
|
||||
|
||||
#endif
|
||||
|
@ -6,6 +6,13 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#if !defined(_M_IX86)
|
||||
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
BOOST_PRAGMA_MESSAGE("Test skipped because _M_IX86 is not defined")
|
||||
|
||||
#else
|
||||
|
||||
#define BOOST_FT_AUTODETECT_CALLING_CONVENTIONS
|
||||
|
||||
#include <boost/mpl/assert.hpp>
|
||||
@ -43,3 +50,4 @@ BOOST_MPL_ASSERT((
|
||||
>
|
||||
));
|
||||
|
||||
#endif
|
||||
|
@ -6,6 +6,13 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#if !defined(_M_IX86)
|
||||
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
BOOST_PRAGMA_MESSAGE("Test skipped because _M_IX86 is not defined")
|
||||
|
||||
#else
|
||||
|
||||
#define BOOST_FT_AUTODETECT_CALLING_CONVENTIONS
|
||||
|
||||
#include <boost/mpl/assert.hpp>
|
||||
@ -58,5 +65,4 @@ BOOST_MPL_ASSERT_NOT((
|
||||
ft::is_callable_builtin< ft::function_pointer<mpl::vector<void> >::type, cc >
|
||||
));
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user