summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-01-10 09:58:26 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2017-01-10 09:58:26 +0000
commitbcbe8424ad18fe5a5ab3eba0233bee46af97f494 (patch)
tree8f1f45ae90b370779f878b1c163c39f7d62b0d1f /libs/surfaces
parent1587364f8daaafa5d1a83ce88aa9a5ef5424f30e (diff)
fix nested templates for ye ancient compilers of the worlde
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/osc/osc_cue_observer.cc2
-rw-r--r--libs/surfaces/osc/osc_cue_observer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc_cue_observer.cc b/libs/surfaces/osc/osc_cue_observer.cc
index 4fbd438877..e49d64e416 100644
--- a/libs/surfaces/osc/osc_cue_observer.cc
+++ b/libs/surfaces/osc/osc_cue_observer.cc
@@ -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)
diff --git a/libs/surfaces/osc/osc_cue_observer.h b/libs/surfaces/osc/osc_cue_observer.h
index 4ade6c0e91..37c61a622b 100644
--- a/libs/surfaces/osc/osc_cue_observer.h
+++ b/libs/surfaces/osc/osc_cue_observer.h
@@ -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; }