Merge pull request #8376 from tkln/watch-widget-sign-compare

WatchWidget: Fix integer comparison signedness warnings
This commit is contained in:
Mat M 2019-10-23 20:20:51 -04:00 committed by GitHub
commit c6da1f050b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,5 +54,5 @@ private:
bool m_updating = false;
static constexpr size_t NUM_COLUMNS = 6;
static constexpr int NUM_COLUMNS = 6;
};