Fixes for serializations found with last commit's test.

Should be fine to move on to next major feature....
This commit is contained in:
2023-08-06 13:28:19 -04:00
parent 34f286d218
commit 00f6c45f15
4 changed files with 171 additions and 114 deletions

View File

@ -589,7 +589,7 @@ String AST::to_string()
if ( Name == nullptr)
{
result.append( "struct\n{\n%s\n};", Body->to_string() );
result.append_fmt( "struct\n{\n%s\n};", Body->to_string() );
break;
}