mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-17 19:06:01 +01:00
fix object vs pointer confusion
This commit is contained in:
parent
2d12b84886
commit
fec260d97b
1 changed files with 1 additions and 1 deletions
|
|
@ -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"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue