modernize-return-braced-init-list

This commit is contained in:
Daniel Chabrowski 2018-02-25 12:24:21 +01:00
parent 17caf77784
commit 35a843f8b6
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ private:
if (rotation_time > now) {
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;