Remove extra space in type declarations

This commit is contained in:
baldurk
2020-06-08 11:46:41 +01:00
parent 80205a887c
commit 4c4cdae5a9
@@ -312,7 +312,7 @@ void Program::MakeDisassemblyString()
for(const Type *t : typ.members)
{
if(!first)
m_Disassembly += ", ";
m_Disassembly += ",";
first = false;
m_Disassembly += StringFormat::Fmt(" %s", t->toString().c_str());
}