2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00
[SVN r13263]
This commit is contained in:
Dave Abrahams
2002-03-24 17:22:32 +00:00
parent a3a633242f
commit 6004a35e23

View File

@@ -68,8 +68,11 @@ int test_main(int, char * [])
return 0;
}
// This definition is needed for MinGW 2.95.2 and KCC on OSF for some reason
#if !defined(_WIN32) || defined(__GNUC__)
// This definition is needed for MinGW 2.95.2 and KCC on OSF for some
// reason, but will break other Win32 compilers.
namespace boost { namespace python
{
bool BOOST_PYTHON_DECL handle_exception_impl(boost::function0<void>) { return false; }
bool handle_exception_impl(boost::function0<void>) { return false; }
}}
#endif