astyle fix
This commit is contained in:
parent
8e15a9e79d
commit
347b8a2de8
|
@ -132,9 +132,9 @@ std::string ErrorLogger::ErrorMessage::toXML() const
|
||||||
while ((pos = m.find_first_of("<>", pos)) != std::string::npos)
|
while ((pos = m.find_first_of("<>", pos)) != std::string::npos)
|
||||||
{
|
{
|
||||||
if (m[pos] == '<')
|
if (m[pos] == '<')
|
||||||
m.insert(pos+1, "<");
|
m.insert(pos + 1, "<");
|
||||||
if (m[pos] == '>')
|
if (m[pos] == '>')
|
||||||
m.insert(pos+1, ">");
|
m.insert(pos + 1, ">");
|
||||||
m.erase(pos, 1);
|
m.erase(pos, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue