13
0

fix mismatched delete/delete[]

This commit is contained in:
Robin Gareus 2016-04-24 14:16:15 +02:00
parent f6a621346c
commit 667a4aafb5

View File

@ -58,8 +58,8 @@ private:
framecnt_t _delay, _pending_delay;
framecnt_t _bsiz, _pending_bsiz;
frameoffset_t _roff, _woff;
boost::shared_ptr<Sample> _buf;
boost::shared_ptr<Sample> _pending_buf;
boost::shared_ptr<Sample[]> _buf;
boost::shared_ptr<Sample[]> _pending_buf;
boost::shared_ptr<MidiBuffer> _midi_buf;
bool _pending_flush;
};