Update file_sinks.h

Removed possible throw of an exception from the destructor
This commit is contained in:
Erik 2018-04-12 10:01:02 +05:00 committed by GitHub
parent 06580c8333
commit be685337b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,7 +289,12 @@ public:
~step_file_sink()
{
close_current_file();
using details::os::filename_to_str;
filename_t src =_current_filename;
filename_t target = _current_filename + _ext;
details::os::rename(src, target);
}
protected: