*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-02-26 13:37:14 +00:00
parent 1e574575b4
commit faac4f5b32
1 changed files with 3 additions and 0 deletions

View File

@ -709,14 +709,17 @@ namespace libtorrent { namespace detail
catch (std::bad_cast& e) catch (std::bad_cast& e)
{ {
std::cerr << e.what() << "\n"; std::cerr << e.what() << "\n";
assert(false);
} }
catch (std::exception& e) catch (std::exception& e)
{ {
std::cerr << e.what() << "\n"; std::cerr << e.what() << "\n";
assert(false);
} }
catch (...) catch (...)
{ {
std::cerr << "error!\n"; std::cerr << "error!\n";
assert(false);
} }
#endif #endif
} }