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:
parent
aae64719a5
commit
a7ee1a7c2e
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue