summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/async_midi_port.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-16 15:44:48 +0200
committerRobin Gareus <robin@gareus.org>2017-09-16 16:37:29 +0200
commit7258c6334db4e8c895fc556ae1ed550f0c70ead1 (patch)
tree9a6015bcbef3036b674f70a2d5a5cb817bb2a524 /libs/ardour/ardour/async_midi_port.h
parentae0dcdc0c5d13483271065c360e378202d20170a (diff)
Namespace PBD::RingBuffer
class RingBuffer<> is a very generic name and should not pollute the global namespace.
Diffstat (limited to 'libs/ardour/ardour/async_midi_port.h')
-rw-r--r--libs/ardour/ardour/async_midi_port.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/async_midi_port.h b/libs/ardour/ardour/async_midi_port.h
index 4e578b5ed1..35f3f53e4f 100644
--- a/libs/ardour/ardour/async_midi_port.h
+++ b/libs/ardour/ardour/async_midi_port.h
@@ -84,7 +84,7 @@ class LIBARDOUR_API AsyncMIDIPort : public ARDOUR::MidiPort, public MIDI::Port {
bool _flush_at_cycle_start;
bool have_timer;
boost::function<framecnt_t (void)> timer;
- RingBuffer< Evoral::Event<double> > output_fifo;
+ PBD::RingBuffer< Evoral::Event<double> > output_fifo;
EventRingBuffer<MIDI::timestamp_t> input_fifo;
Glib::Threads::Mutex output_fifo_lock;
CrossThreadChannel _xthread;