Jan 1, 2013 at 1:38pm
If you use std::boolalpha
in CXMLString(T content, string tag = "")
mystream << "<" << tag << ">" << std::boolalpha << content
the bool overload would not be required at all, would it?
Jan 1, 2013 at 1:43pm
wasn't aware of something as boolalpha. Tried it out and it works! Thanks.