From b8d71929b86d172cf1379cce903c5efa344033d8 Mon Sep 17 00:00:00 2001 From: David Deakins Date: Mon, 14 May 2012 21:01:39 +0000 Subject: [PATCH] Fixes ticket #6841 (_cdecl and __stdcall are ambiguous for Windows CE) [SVN r78474] --- include/boost/intrusive/detail/mpl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/intrusive/detail/mpl.hpp b/include/boost/intrusive/detail/mpl.hpp index 075381c..8a73c61 100644 --- a/include/boost/intrusive/detail/mpl.hpp +++ b/include/boost/intrusive/detail/mpl.hpp @@ -130,7 +130,7 @@ struct identity #define BOOST_INTRUSIVE_TT_DECL #endif -#if defined(_MSC_EXTENSIONS) && !defined(__BORLAND__) && !defined(_WIN64) +#if defined(_MSC_EXTENSIONS) && !defined(__BORLAND__) && !defined(_WIN64) && !defined(UNDER_CE) #define BOOST_INTRUSIVE_TT_TEST_MSC_FUNC_SIGS #endif