Add BOOST_REGEX_NO_FASTCALL config macro and regenerate docs.

Fixes #6245.

[SVN r76140]
This commit is contained in:
John Maddock
2011-12-24 18:04:37 +00:00
parent c711849c8a
commit e389d92752
5 changed files with 21 additions and 2 deletions

View File

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