1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 16:48:44 +02:00

Remove changes not really needed to fix warnings, and which broke some builds

This commit is contained in:
Paul Licameli 2016-02-27 09:41:23 -05:00
parent b5d2528c03
commit 60eeac0b10
2 changed files with 0 additions and 6 deletions

View File

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

View File

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