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

A minor code cleanup

This commit is contained in:
tpoole 2017-10-12 12:31:55 +01:00
parent 996f44f3f6
commit 3cb185fcc3
10 changed files with 23 additions and 25 deletions

View file

@ -835,7 +835,8 @@ ValueTree ValueTree::getChild (int index) const
ValueTree::Iterator::Iterator (const ValueTree& v, bool isEnd) noexcept
: internal (v.object != nullptr ? (isEnd ? v.object->children.end() : v.object->children.begin()) : nullptr)
{}
{
}
ValueTree::Iterator& ValueTree::Iterator::operator++() noexcept
{