From 171749f4406050b13f9abfeab792ed040a3db871 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 5 Apr 2006 12:22:36 +0000 Subject: [PATCH] Added guards for managed code and __fastcall [SVN r33557] --- 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