Mercurial > hg > svcore
diff data/fileio/test/BogusAudioFileReaderTest.h @ 1707:8ce940f9e32b
C++ compiler in Travis Xenial image doesn't seem to like this with nullptr
author | Chris Cannam |
---|---|
date | Thu, 16 May 2019 12:47:35 +0100 |
parents | dbd13eb7dad1 |
children | ab4fd193262b |
line wrap: on
line diff
--- a/data/fileio/test/BogusAudioFileReaderTest.h Tue May 07 15:54:15 2019 +0100 +++ b/data/fileio/test/BogusAudioFileReaderTest.h Thu May 16 12:47:35 2019 +0100 @@ -86,7 +86,7 @@ AudioFileReader *reader = AudioFileReaderFactory::createReader(path, {}); - QCOMPARE((void *)reader, nullptr); + QCOMPARE((void *)reader, 0); } };