Fix a compilation error on macOS Ventura.

This commit is contained in:
Uwe Risse 2023-06-23 16:39:46 +02:00
parent 383ff7e91a
commit 4671b9de0b

View File

@ -1335,8 +1335,8 @@ FrequencyList_v2_101::FrequencyItems FrequencyList_v2_101::from_json_file(QFile
{
throw ReadFileException{tr ("No Frequencies were found")};
}
int valid_entry_count = 0;
int skipped_entry_count = 0;
int valid_entry_count [[maybe_unused]] = 0;
int skipped_entry_count [[maybe_unused]] = 0;
for (auto const &item: arr)
{
QString mode_s, region_s;