Commit c225a553 by Jesse Beder

Fixed bug in emitting null nodes

parent 555fb5c3
...@@ -260,6 +260,8 @@ namespace YAML ...@@ -260,6 +260,8 @@ namespace YAML
// write content // write content
if(node.m_pContent) if(node.m_pContent)
node.m_pContent->Write(out); node.m_pContent->Write(out);
else
out << "";
return out; return out;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment