summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2015-03-07 12:29:15 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2015-03-07 12:29:15 +0000
commit4b401d9e34fc1ccbf0977fb2d47c03178ddae5ec (patch)
tree9464c88a740eb5a899d90cc3fc67f69eb79db5f7 /libs/evoral/evoral
parent3dac4b760bc3642ad35c69c6cd5e99573489a8a3 (diff)
Add a missing 'typename' specifier to the declaration for 'Evoral::Sequence::set_notes()'
Diffstat (limited to 'libs/evoral/evoral')
-rw-r--r--libs/evoral/evoral/Sequence.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/evoral/Sequence.hpp b/libs/evoral/evoral/Sequence.hpp
index a5e95de1be..dd5dd17e19 100644
--- a/libs/evoral/evoral/Sequence.hpp
+++ b/libs/evoral/evoral/Sequence.hpp
@@ -183,7 +183,7 @@ public:
OverlapPitchResolution overlap_pitch_resolution() const { return _overlap_pitch_resolution; }
void set_overlap_pitch_resolution(OverlapPitchResolution opr);
- void set_notes (const Sequence<Time>::Notes& n);
+ void set_notes (const typename Sequence<Time>::Notes& n);
typedef boost::shared_ptr< Event<Time> > SysExPtr;
typedef boost::shared_ptr<const Event<Time> > constSysExPtr;