summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index f537c9dfdf..f299995ffa 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -21,6 +21,7 @@
#include <algorithm>
#include "pbd/xml++.h"
+#include "pbd/boost_debug.h"
#include "ardour/amp.h"
#include "ardour/send.h"
@@ -42,6 +43,8 @@ Send::Send (Session& s, boost::shared_ptr<Pannable> p, boost::shared_ptr<MuteMas
: Delivery (s, p, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), r)
, _metering (false)
{
+ boost_debug_shared_ptr_mark_interesting (this, "send");
+
_amp.reset (new Amp (_session));
_meter.reset (new PeakMeter (_session));
}