1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Midi: Fix midi buffer iterator tag

This commit is contained in:
reuk 2020-06-01 10:10:46 +01:00
parent 074f5077fc
commit f7ccdd54bb
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -92,7 +92,7 @@ public:
using value_type = MidiMessageMetadata;
using reference = MidiMessageMetadata;
using pointer = void;
using iterator_category = std::bidirectional_iterator_tag;
using iterator_category = std::input_iterator_tag;
/** Make this iterator point to the next message in the buffer. */
MidiBufferIterator& operator++() noexcept;