From 2844e5b8cbd90c339615b8305a1ab32a0ca1e4ae Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 5 Apr 2006 12:24:17 +0000 Subject: [PATCH] Added checks for managed code and __fastcall. [SVN r33558] --- include/boost/regex/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index 3b78bdda..0e229f50 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -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