Review fixes

This commit is contained in:
Sergey Yershov 2015-08-17 15:08:47 +03:00 committed by Alex Zolotarev
parent 1253cba007
commit 1e1248ef18

View file

@ -36,7 +36,8 @@ string XMLElement::ToString(string const & shift) const
switch (type)
{
case EntityType::Node:
ss << "Node: " << id << " (" << fixed << setw(7) << lat << ", " << lon << ")" << " tags: " << m_tags.size();
ss << "Node: " << id << " (" << fixed << setw(7) << lat << ", " << lon << ")"
<< " tags: " << m_tags.size();
break;
case EntityType::Nd:
ss << "Nd ref: " << ref;
@ -47,7 +48,7 @@ string XMLElement::ToString(string const & shift) const
{
string shift2 = shift;
shift2 += shift2.empty() ? "\n " : " ";
for ( auto const & e : m_nds )
for (auto const & e : m_nds)
ss << shift2 << e;
}
break;
@ -57,7 +58,7 @@ string XMLElement::ToString(string const & shift) const
{
string shift2 = shift;
shift2 += shift2.empty() ? "\n " : " ";
for ( auto const & e : m_members )
for (auto const & e : m_members)
ss << shift2 << e.ref << " " << DebugPrint(e.type) << " " << e.role;
}
break;
@ -80,7 +81,6 @@ string XMLElement::ToString(string const & shift) const
return ss.str();
}
string DebugPrint(XMLElement const & e)
{
return e.ToString();