Eliminate repeated virtual calls

This commit is contained in:
Dmitry-Me 2014-09-26 14:21:00 +04:00
parent b0776aeead
commit 6d202ff20e
1 changed files with 2 additions and 1 deletions

View File

@ -913,7 +913,8 @@ XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
bool XMLText::ShallowEqual( const XMLNode* compare ) const
{
return ( compare->ToText() && XMLUtil::StringEqual( compare->ToText()->Value(), Value() ));
const XMLText* text = compare->ToText();
return ( text && XMLUtil::StringEqual( text->Value(), Value() ) );
}