remove unused variables, nodiscard for openaudiofile method

This commit is contained in:
xenakios
2018-10-15 18:43:33 +03:00
parent 642365f03e
commit 0e0f28687e
2 changed files with 1 additions and 4 deletions

View File

@ -35,7 +35,7 @@ public:
{
};
virtual bool openAudioFile(File file)=0;
[[nodiscard]] virtual bool openAudioFile(File file)=0;
virtual void close()=0;
virtual int readNextBlock(AudioBuffer<float>& abuf, int smps, int numchans)=0;