Only enable __stdcall function support when _MSC_EXTENSIONS is defined (rather than _MSC_VER).

[SVN r28388]
This commit is contained in:
John Maddock
2005-04-21 16:07:56 +00:00
parent 55b227c621
commit ff5d236eeb

View File

@@ -41,7 +41,7 @@
// when we want to test __stdcall etc function types with is_function etc
// (Note, does not work with Borland, even though it does support __stdcall etc):
//
#if defined(_MSC_VER) && !defined(__BORLANDC__)
#if defined(_MSC_EXTENSIONS) && !defined(__BORLANDC__)
# define BOOST_TT_TEST_MS_FUNC_SIGS
#endif