13
0

fix nested templates for ye ancient compilers of the worlde

This commit is contained in:
Paul Davis 2017-01-10 09:58:26 +00:00
parent 1587364f8d
commit bcbe8424ad
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ using namespace PBD;
using namespace ARDOUR;
using namespace ArdourSurface;
OSCCueObserver::OSCCueObserver (boost::shared_ptr<Stripable> s, std::vector<boost::shared_ptr<ARDOUR::Stripable>>& snds, lo_address a)
OSCCueObserver::OSCCueObserver (boost::shared_ptr<Stripable> s, std::vector<boost::shared_ptr<ARDOUR::Stripable> >& snds, lo_address a)
: sends (snds)
, _strip (s)
, tick_enable (false)

View File

@ -33,7 +33,7 @@ class OSCCueObserver
{
public:
OSCCueObserver (boost::shared_ptr<ARDOUR::Stripable>, std::vector<boost::shared_ptr<ARDOUR::Stripable>>& sends, lo_address addr);
OSCCueObserver (boost::shared_ptr<ARDOUR::Stripable>, std::vector<boost::shared_ptr<ARDOUR::Stripable> >& sends, lo_address addr);
~OSCCueObserver ();
boost::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }