mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-25 02:04:23 +00:00
XML parsing performance fix.
This commit is contained in:
parent
2d10b0b43d
commit
52de2d36a9
2 changed files with 2 additions and 2 deletions
|
|
@ -15070,7 +15070,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
|
|||
++len;
|
||||
}
|
||||
|
||||
textElementContent.append (start.getAddress(), len);
|
||||
textElementContent.appendCharPointer (start, len);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -604,7 +604,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
|
|||
++len;
|
||||
}
|
||||
|
||||
textElementContent.append (start.getAddress(), len);
|
||||
textElementContent.appendCharPointer (start, len);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue