Added BOOST_NO_EXCEPTIONS support

[SVN r12754]
This commit is contained in:
John Maddock
2002-02-08 12:39:21 +00:00
parent a42bc25797
commit 4091f8c54f
2 changed files with 13 additions and 0 deletions

View File

@ -34,6 +34,12 @@
# define BOOST_NO_USING_TEMPLATE
#endif
//
// check for exception handling support:
#ifndef _CPPUNWIND
# define BOOST_NO_EXCEPTIONS
#endif
#define BOOST_COMPILER "Borland C++ version " BOOST_STRINGIZE(__BORLANDC__)
//

View File

@ -58,6 +58,13 @@
# define BOOST_NO_INTRINSIC_WCHAR_T
#endif
//
// check for exception handling support:
#ifndef _CPPUNWIND
# define BOOST_NO_EXCEPTIONS
#endif
#define BOOST_COMPILER "Microsoft Visual C++ version " BOOST_STRINGIZE(_MSC_VER)
//