From 438dbb76371c2eb7744fe8dd42b1a2de8154a49e Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 14 Mar 2016 10:08:36 +0000 Subject: [PATCH] Tweaked some syntax in the SVG parser to avoid problems in GCC. --- modules/juce_gui_basics/drawables/juce_SVGParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/drawables/juce_SVGParser.cpp b/modules/juce_gui_basics/drawables/juce_SVGParser.cpp index 6ae599aba2..d62942ea32 100644 --- a/modules/juce_gui_basics/drawables/juce_SVGParser.cpp +++ b/modules/juce_gui_basics/drawables/juce_SVGParser.cpp @@ -905,7 +905,7 @@ private: } }; - GetFillTypeOp op = { this, &path, opacity }; + GetFillTypeOp op = { this, &path, opacity, FillType() }; if (topLevelXml.applyOperationToChildWithID (urlID, op)) return op.fillType;