Ensure string is chosen correctly

This commit is contained in:
Ian McInerney 2020-10-07 23:23:43 +01:00
parent 9faccda68d
commit 16374e9ae1
1 changed files with 2 additions and 2 deletions

View File

@ -968,13 +968,13 @@ const std::string SHAPE_LINE_CHAIN::Format() const
ss << ", "; ss << ", ";
} }
ss << "}, " << m_closed ? "true" : "false"; ss << "}, " << ( m_closed ? "true" : "false" );
ss << " );"; ss << " );";
return ss.str(); return ss.str();
/* fixme: arcs /* fixme: arcs
for( size_t i = 0; i < m_arcs.size(); i++ ) for( size_t i = 0; i < m_arcs.size(); i++ )