std::chrono cleanup: always use steady_clock

This commit is contained in:
Nekotekina 2020-12-11 16:31:32 +03:00
parent 12a48fc6d1
commit aa3aef4beb
19 changed files with 96 additions and 97 deletions

View file

@ -1195,7 +1195,7 @@ namespace rsx
struct profiling_timer
{
bool enabled = false;
std::chrono::time_point<steady_clock> last;
steady_clock::time_point last;
profiling_timer() = default;