Fix non-void function return value

Since last catch insert exception string to `ss`, it should returns.
This commit is contained in:
Spartucus 2018-05-30 17:56:20 +08:00 committed by Peter Conrad
parent 2eb047a6f4
commit 3583ee6138

View file

@ -251,6 +251,7 @@ namespace fc
} catch( ... ) {
ss << "<- exception in to_string.\n";
}
return ss.str();
}
[[noreturn]] void exception_factory::rethrow( const exception& e )const