From 9264aa95aaf13847fc114eac00aacdd80e86999c Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 3 Jul 2019 02:12:27 +0100 Subject: [PATCH] Squash a compiler warning --- models/Bands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/Bands.cpp b/models/Bands.cpp index e24d42965..832c36185 100644 --- a/models/Bands.cpp +++ b/models/Bands.cpp @@ -51,7 +51,7 @@ namespace int constexpr table_rows () { - return sizeof (ADIF_bands) / sizeof (ADIF_bands[0]); + return sizeof ADIF_bands / sizeof ADIF_bands[0]; } } @@ -79,7 +79,7 @@ QString Bands::find (Frequency f) const int Bands::find (QString const& band) const { int result {-1}; - for (auto i = 0u; i < table_rows (); ++i) + for (auto i = 0; i < table_rows (); ++i) { if (band == ADIF_bands[i].name_) {