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

Fixed VS2013 compiler warning in SVGParser

This commit is contained in:
tpoole 2017-04-20 11:59:04 +01:00
parent 024fe6c9ad
commit 37e21e9cb1

View file

@ -1118,7 +1118,7 @@ private:
return source;
}
String getStyleAttribute (const XmlPath& xml, StringRef attributeName, const String& defaultValue = {}) const
String getStyleAttribute (const XmlPath& xml, StringRef attributeName, const String& defaultValue = String()) const
{
if (xml->hasAttribute (attributeName))
return xml->getStringAttribute (attributeName, defaultValue);