# HG changeset patch # User Chris Cannam # Date 1548239490 0 # Node ID ae9849c0815f44c41cac62eea09b2fd6ad6c331f # Parent 81989085997b4e8eef06408511a5d8300c35e062 Avoid compiler warning diff -r 81989085997b -r ae9849c0815f data/fileio/test/EncodingTest.h --- a/data/fileio/test/EncodingTest.h Tue Jan 22 20:07:46 2019 +0000 +++ b/data/fileio/test/EncodingTest.h Wed Jan 23 10:31:30 2019 +0000 @@ -46,6 +46,8 @@ }; static const int mappingCount = 4; +#ifdef Q_OS_MAC +// see note in addAudioFiles below static const char *testFiles[][2] = { { "id3v2-iso-8859-1", "mp3" }, { "id3v2-ucs-2", "mp3" }, @@ -58,6 +60,7 @@ { utf8_name_sprkt, "ogg" }, }; static const int testFileCount = 8; +#endif class EncodingTest : public QObject {