Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78474 - trunk/boost/intrusive/detail
From: DDeakins_at_[hidden]
Date: 2012-05-14 17:01:40


Author: davedeakins
Date: 2012-05-14 17:01:39 EDT (Mon, 14 May 2012)
New Revision: 78474
URL: http://svn.boost.org/trac/boost/changeset/78474

Log:
Fixes ticket #6841 (_cdecl and __stdcall are ambiguous for Windows CE)
Text files modified:
   trunk/boost/intrusive/detail/mpl.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/intrusive/detail/mpl.hpp
==============================================================================
--- trunk/boost/intrusive/detail/mpl.hpp (original)
+++ trunk/boost/intrusive/detail/mpl.hpp 2012-05-14 17:01:39 EDT (Mon, 14 May 2012)
@@ -130,7 +130,7 @@
 #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
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk