Skip to content
Snippets Groups Projects
Commit c225a553 authored by Jesse Beder's avatar Jesse Beder
Browse files

Fixed bug in emitting null nodes

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