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

Added some missing types to the ValueTree::Iterator class

This commit is contained in:
jules 2018-02-05 09:24:22 +00:00
parent 0a3da44f07
commit 5a6f33b987

View file

@ -394,6 +394,12 @@ public:
bool operator!= (const Iterator&) const noexcept;
ValueTree operator*() const;
using difference_type = std::ptrdiff_t;
using value_type = ValueTree;
using reference = ValueTree&;
using pointer = ValueTree*;
using iterator_category = std::forward_iterator_tag;
private:
void* internal;
};