*** empty log message ***
This commit is contained in:
parent
1e574575b4
commit
faac4f5b32
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue