Fixed bug in emitting null nodes

This commit is contained in:
jbeder
2009-07-26 07:42:50 +00:00
parent d0870b4112
commit c4e1446dff

View File

@@ -260,6 +260,8 @@ namespace YAML
// write content
if(node.m_pContent)
node.m_pContent->Write(out);
else
out << "";
return out;
}