1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added an assertion to avoid surprises if you call the not-yet-implemented MP3AudioFormat::createWriterFor() method

This commit is contained in:
jules 2017-10-24 17:33:57 +01:00
parent 2d1532e5d0
commit 65857af333

View file

@ -3147,6 +3147,7 @@ AudioFormatWriter* MP3AudioFormat::createWriterFor (OutputStream*, double /*samp
unsigned int /*numberOfChannels*/, int /*bitsPerSample*/,
const StringPairArray& /*metadataValues*/, int /*qualityOptionIndex*/)
{
jassertfalse; // not yet implemented!
return nullptr;
}