BLI: add last time to scoped averaged time

This commit is contained in:
Jacques Lucke 2022-12-24 14:00:46 +01:00
parent e1180bfdb2
commit 8fab53c023
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,8 @@ ScopedTimerAveraged::~ScopedTimerAveraged()
print_duration(total_time_ / total_count_);
std::cout << ", Min: ";
print_duration(min_time_);
std::cout << ", Last: ";
print_duration(duration);
std::cout << ")\n";
}