fix VC7 warnings

This commit is contained in:
Chris Danford
2005-01-08 02:06:22 +00:00
parent 86d66c6e23
commit 77e1c2fee8
6 changed files with 16 additions and 19 deletions
-1
View File
@@ -699,7 +699,6 @@ const XNode *XNode::GetChild( const char* name ) const
multimap<CString, XNode*>::const_iterator it = m_childs.find( name );
if( it != m_childs.end() )
{
XNode* p = it->second;
DEBUG_ASSERT( name == it->second->m_sName );
return it->second;
}