Unverified Commit be685337 authored by Erik's avatar Erik Committed by GitHub

Update file_sinks.h

Removed possible throw of an exception from the destructor
parent 06580c83
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment