Add missing closing " for string constants in AST dumps

This commit is contained in:
Randy Heit 2013-09-10 21:50:27 -05:00
parent 52d5e74e7e
commit b6e525d935
1 changed files with 1 additions and 0 deletions

View File

@ -267,6 +267,7 @@ static void PrintStringConst(FLispString &out, FString str)
outstr.AppendFormat("\\x%02X", str[i]);
}
}
outstr << '"';
out.Add(outstr);
}