Small changes to eliminate compiler warnings for 'nite' in issue 83

This commit is contained in:
Jesse Beder
2011-03-02 05:29:46 +00:00
parent 2faeb76e2d
commit 4caedfda74
3 changed files with 5 additions and 1 deletions

View File

@@ -25,8 +25,9 @@ namespace YAML
return *pNode1 < *pNode2;
}
Node::Node(): m_type(CT_NONE), m_pContent(0), m_alias(false), m_pIdentity(this), m_referenced(false)
Node::Node(): m_type(CT_NONE), m_pContent(0), m_alias(false), m_referenced(false)
{
m_pIdentity = this;
}
Node::~Node()