1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Cuts down unused parameter warnings to just a few that may well indicate implementation errors.

This commit is contained in:
Thomas Harte
2020-05-30 01:06:43 -04:00
parent d066dd2b44
commit 48afc54af6
24 changed files with 42 additions and 25 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ void Metrics::announce_did_resize() {
frames_missed_ = frames_hit_ = 0;
}
void Metrics::announce_draw_status(size_t lines, std::chrono::high_resolution_clock::duration duration, bool complete) {
void Metrics::announce_draw_status(size_t, std::chrono::high_resolution_clock::duration, bool complete) {
if(!complete) {
++frames_missed_;
} else {