Fixed empty scalar in sequence bug

This commit is contained in:
Jesse Beder
2009-07-30 05:54:40 +00:00
parent ae41e58ca3
commit 382f1ba3c7
3 changed files with 14 additions and 3 deletions

View File

@@ -264,7 +264,7 @@ namespace YAML
if(node.m_pContent)
node.m_pContent->Write(out);
else
out << "";
out << Null;
return out;
}