
18 Jun
2012
18 Jun
'12
9:25 a.m.
On 17/06/2012 12:45, Dirk Ulrich wrote:
I am working on a C++ based project which forbids the usage of C++ exceptions but it is still preferable to use Boost libraries at least the ones which do not make use of C++ exceptions at all.
All Boost libraries should work with exceptions disabled, with potentially limited functionality. If that is not the case, it's probably a library-specific bug that should be reported. If exceptions are disabled, Boost will call boost::throw_exception(std::exception const&), which must be defined by the user.