Fixed bug in emitting null nodes

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

View File

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