This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
XML parsing performance fix.
tags/2021-05-28
Julian Storer
14 years ago
parent
2d10b0b43d
commit
52de2d36a9
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
juce_amalgamated.cpp
+1
-1
src/text/juce_XmlDocument.cpp
+ 1
- 1
juce_amalgamated.cpp
View File
@@ -15070,7 +15070,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
++len;
}
textElementContent.append (start
.getAddress()
, len);
textElementContent.append
CharPointer
(start, len);
}
}
+ 1
- 1
src/text/juce_XmlDocument.cpp
View File
@@ -604,7 +604,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
++len;
}
textElementContent.append (start
.getAddress()
, len);
textElementContent.append
CharPointer
(start, len);
}
}
Write
Preview
Loading…
Cancel
Save