Fixed bug in emitting null nodes

This commit is contained in:
Jesse Beder
2009-07-26 07:42:50 +00:00
parent 555fb5c3a0
commit c225a55344

View File

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