1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-16 17:41:14 +01:00

Fix warnings for nonexhaustive switches on enumerations

This commit is contained in:
Paul Licameli
2016-02-26 14:44:31 -05:00
parent dfc84d030c
commit 3cc4754ac7
4 changed files with 14 additions and 0 deletions

View File

@@ -79,6 +79,9 @@ void ODFLACFile::metadata_callback(const FLAC__StreamMetadata *metadata)
case FLAC__METADATA_TYPE_PICTURE: // ignore pictures
case FLAC__METADATA_TYPE_UNDEFINED: // do nothing with this either
break;
case FLAC__MAX_METADATA_TYPE: // suppress compiler warning
break;
}
}