fix object vs pointer confusion

This commit is contained in:
Paul Davis 2017-08-19 19:35:48 -04:00
parent 2d12b84886
commit fec260d97b

View file

@ -38,7 +38,7 @@ using std::endl;
using namespace ARDOUR;
MultiAllocSingleReleasePool BeatBox::Event::pool (X_("beatbox events"), sizeof (Event*), 2048);
MultiAllocSingleReleasePool BeatBox::Event::pool (X_("beatbox events"), sizeof (Event), 2048);
BeatBox::BeatBox (Session& s)
: Processor (s, _("BeatBox"))