First off great library and worked great for my project. I found with the below minor tweak the code did not escape messages unless it really needed to.
Tinyxml Version: 2.6.2
Using STL
From line 1214 in tinyxml.cpp
if (value.find ('\"') == TIXML_STRING::npos) {
To line 1214 in tinyxml.cpp
if (v.find ('\"') == TIXML_STRING::npos) {
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
First off great library and worked great for my project. I found with the below minor tweak the code did not escape messages unless it really needed to.
Tinyxml Version: 2.6.2
Using STL
From line 1214 in tinyxml.cpp
if (value.find ('\"') == TIXML_STRING::npos) {
To line 1214 in tinyxml.cpp
if (v.find ('\"') == TIXML_STRING::npos) {