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

Added missing initialiser in Path::Iterator constructor

This commit is contained in:
hogliux 2016-12-21 09:38:22 +00:00
parent aae64719a5
commit a7ee1a7c2e

View file

@ -1574,7 +1574,8 @@ void Path::restoreFromString (StringRef stringVersion)
//==============================================================================
Path::Iterator::Iterator (const Path& p) noexcept
: x1 (0), y1 (0), x2 (0), y2 (0), x3 (0), y3 (0),
: elementType (startNewSubPath),
x1 (0), y1 (0), x2 (0), y2 (0), x3 (0), y3 (0),
path (p), index (0)
{
}