Added guards for managed code and __fastcall

[SVN r33557]
This commit is contained in:
John Maddock
2006-04-05 12:22:36 +00:00
parent c1c2058d3d
commit 171749f440

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