removed AudioBuffer::operator<<

main
Georg Krause 2018-04-08 11:07:13 +02:00
parent 10b2cad7ed
commit efc531206d
2 changed files with 1 additions and 13 deletions

View File

@ -122,14 +122,4 @@ void AudioBuffer::nonRtResize(unsigned long size)
{
bufferL.resize(size);
bufferR.resize(size);
}
/*
ostream& AudioBuffer::operator<<(ostream& o, const AudioBuffer& a)
{
o << "AudioBuffer " << a.name <<
" beats: " << a.numBeats <<
" audioFrames: " << a.audioFrames << endl;
return o;
}
*/
}

View File

@ -61,8 +61,6 @@ public:
void nonRtResize(unsigned long size);
//friend ostream& operator<<(ostream& o, const AudioBuffer& a);
protected:
static int privateID;
int ID;