Added checks for managed code and __fastcall.

[SVN r33558]
This commit is contained in:
John Maddock
2006-04-05 12:24:17 +00:00
parent dc69badb71
commit 2844e5b8cb

View File

@ -205,7 +205,7 @@
****************************************************************************/
#if defined(BOOST_MSVC) && (BOOST_MSVC >= 1200) && defined(_MSC_EXTENSIONS)
#if defined(_DEBUG) || defined(__MSVC_RUNTIME_CHECKS)
#if defined(_DEBUG) || defined(__MSVC_RUNTIME_CHECKS) || defined(_MANAGED)
# define BOOST_REGEX_CALL __cdecl
#else
# define BOOST_REGEX_CALL __fastcall