summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-07 17:08:17 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-07 17:08:17 -0600
commite893c317010792c8e19220bc2b91adb68083ae5a (patch)
treeaa0b0b697ae1268ab118c8236fd198f85736d4d9 /libs/ardour
parent76245107c71f9727b6e25af4672efec97f52c48a (diff)
"fix" some uses of foo<bar<>> by change the closing chars to "> >" (windows
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/disk_reader.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/disk_reader.cc b/libs/ardour/disk_reader.cc
index abd6b7b4e3..e08241fc9f 100644
--- a/libs/ardour/disk_reader.cc
+++ b/libs/ardour/disk_reader.cc
@@ -1256,7 +1256,7 @@ out:
}
void
-DiskReader::playlist_ranges_moved (list<Evoral::RangeMove<samplepos_t>> const& movements_samples, bool from_undo_or_shift)
+DiskReader::playlist_ranges_moved (list<Evoral::RangeMove<samplepos_t> > const& movements_samples, bool from_undo_or_shift)
{
/* If we're coming from an undo, it will have handled
* automation undo (it must, since automation-follows-regions
@@ -1275,9 +1275,9 @@ DiskReader::playlist_ranges_moved (list<Evoral::RangeMove<samplepos_t>> const& m
return;
}
- list<Evoral::RangeMove<double>> movements;
+ list<Evoral::RangeMove<double> > movements;
- for (list<Evoral::RangeMove<samplepos_t>>::const_iterator i = movements_samples.begin ();
+ for (list<Evoral::RangeMove<samplepos_t> >::const_iterator i = movements_samples.begin ();
i != movements_samples.end ();
++i) {
movements.push_back (Evoral::RangeMove<double> (i->from, i->length, i->to));
@@ -1308,15 +1308,15 @@ DiskReader::playlist_ranges_moved (list<Evoral::RangeMove<samplepos_t>> const& m
}
void
-DiskReader::move_processor_automation (boost::weak_ptr<Processor> p, list<Evoral::RangeMove<samplepos_t>> const& movements_samples)
+DiskReader::move_processor_automation (boost::weak_ptr<Processor> p, list<Evoral::RangeMove<samplepos_t> > const& movements_samples)
{
boost::shared_ptr<Processor> processor (p.lock ());
if (!processor) {
return;
}
- list<Evoral::RangeMove<double>> movements;
- for (list<Evoral::RangeMove<samplepos_t>>::const_iterator i = movements_samples.begin (); i != movements_samples.end (); ++i) {
+ list<Evoral::RangeMove<double> > movements;
+ for (list<Evoral::RangeMove<samplepos_t> >::const_iterator i = movements_samples.begin (); i != movements_samples.end (); ++i) {
movements.push_back (Evoral::RangeMove<double> (i->from, i->length, i->to));
}