I had a simple stopwatch class that was basically using std::chrono::steady_clock::now() - this->start_ in its implementation for measuring elapsed time. I h
std::chrono::steady_clock::now() - this->start_