Remove unnecessary cast in XMLNode::Value()

This commit is contained in:
Sarat Addepalli 2015-05-20 10:36:06 +05:30
parent d608c561e0
commit 96b4346660
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ XMLNode::~XMLNode()
const char* XMLNode::Value() const
{
if ( this->ToDocument() )
return ( const char* )0;
return 0;
return _value.GetStr();
}