Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79436 - trunk/boost/intrusive/detail
From: igaztanaga_at_[hidden]
Date: 2012-07-12 03:25:47


Author: igaztanaga
Date: 2012-07-12 03:25:46 EDT (Thu, 12 Jul 2012)
New Revision: 79436
URL: http://svn.boost.org/trac/boost/changeset/79436

Log:
Ticket #6907: __fastcall not guarded against
Text files modified:
   trunk/boost/intrusive/detail/mpl.hpp | 12 ++++++++++++
   1 files changed, 12 insertions(+), 0 deletions(-)

Modified: trunk/boost/intrusive/detail/mpl.hpp
==============================================================================
--- trunk/boost/intrusive/detail/mpl.hpp (original)
+++ trunk/boost/intrusive/detail/mpl.hpp 2012-07-12 03:25:46 EDT (Thu, 12 Jul 2012)
@@ -156,10 +156,14 @@
 struct is_unary_or_binary_function_impl<R (__stdcall*)()>
 { static const bool value = true; };
 
+#ifndef _MANAGED
+
 template <typename R>
 struct is_unary_or_binary_function_impl<R (__fastcall*)()>
 { static const bool value = true; };
 
+#endif
+
 template <typename R>
 struct is_unary_or_binary_function_impl<R (__cdecl*)()>
 { static const bool value = true; };
@@ -188,10 +192,14 @@
 struct is_unary_or_binary_function_impl<R (__stdcall*)(T0)>
 { static const bool value = true; };
 
+#ifndef _MANAGED
+
 template <typename R, class T0>
 struct is_unary_or_binary_function_impl<R (__fastcall*)(T0)>
 { static const bool value = true; };
 
+#endif
+
 template <typename R, class T0>
 struct is_unary_or_binary_function_impl<R (__cdecl*)(T0)>
 { static const bool value = true; };
@@ -220,10 +228,14 @@
 struct is_unary_or_binary_function_impl<R (__stdcall*)(T0, T1)>
 { static const bool value = true; };
 
+#ifndef _MANAGED
+
 template <typename R, class T0, class T1>
 struct is_unary_or_binary_function_impl<R (__fastcall*)(T0, T1)>
 { static const bool value = true; };
 
+#endif
+
 template <typename R, class T0, class T1>
 struct is_unary_or_binary_function_impl<R (__cdecl*)(T0, T1)>
 { static const bool value = true; };


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