Commit c225a553 authored by Jesse Beder's avatar Jesse Beder
Browse files

Fixed bug in emitting null nodes

parent 555fb5c3
......@@ -260,6 +260,8 @@ namespace YAML
// write content
if(node.m_pContent)
node.m_pContent->Write(out);
else
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