Testing __stdcall etc functions with is_member_function_pointer doesn't work with Borland C++, so disable it.

[SVN r27943]
This commit is contained in:
John Maddock
2005-04-03 10:05:04 +00:00
parent 2de95cfbf7
commit 9ca0221b86

View File

@ -38,9 +38,10 @@
//
// define BOOST_TT_TEST_MS_FUNC_SIGS
// when we want to test __stdcall etc function types with is_function etc:
// 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_VER) && !defined(__BORLANDC__)
# define BOOST_TT_TEST_MS_FUNC_SIGS
#endif