
Hi, Does anyone know whether it's possible to use boost without exception handling enabled? And if so, how would I go about doing that. Basically I'm getting an unresolved external symbol: boost::throw_exception(class std::exception const &) Cheers, James

Basically I'm getting an unresolved external symbol: boost::throw_exception(class std::exception const &)
Open http://www.boost.org/libs/utility/throw_exception.html and search for "user defined". -- Alexander Nasonov

Ah BOOST_NO_EXCEPTIONS is what I was looking for. :o) Thanks. "Alexander Nasonov" <alnsn@yandex.ru> wrote in message news:4517F293.000006.10897@pantene.yandex.ru...
Basically I'm getting an unresolved external symbol: boost::throw_exception(class std::exception const &)
Open http://www.boost.org/libs/utility/throw_exception.html and search for "user defined".
-- Alexander Nasonov _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

James Robertson wrote:
Hi,
Does anyone know whether it's possible to use boost without exception handling enabled? And if so, how would I go about doing that.
Basically I'm getting an unresolved external symbol: boost::throw_exception(class std::exception const &)
Yes, but without exception support we don't know how you want errors reported, so you have to define that API yourself to do whatever is logical for your application. John.
participants (4)
-
Alexander Nasonov
-
James Robertson
-
John Maddock
-
loufoque