Commit 35a843f8 authored by Daniel Chabrowski's avatar Daniel Chabrowski

modernize-return-braced-init-list

parent 17caf777
...@@ -238,7 +238,7 @@ private: ...@@ -238,7 +238,7 @@ private:
if (rotation_time > now) { if (rotation_time > now) {
return rotation_time; return rotation_time;
} }
return std::chrono::system_clock::time_point(rotation_time + std::chrono::hours(24)); return{ rotation_time + std::chrono::hours(24) };
} }
filename_t _base_filename; filename_t _base_filename;
......
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