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,7 +968,7 @@ const std::string SHAPE_LINE_CHAIN::Format() const
ss << ", "; ss << ", ";
} }
ss << "}, " << m_closed ? "true" : "false"; ss << "}, " << ( m_closed ? "true" : "false" );
ss << " );"; ss << " );";