mirror of https://github.com/AxioDL/tinyxml2.git
Eliminate repeated virtual calls
This commit is contained in:
parent
b0776aeead
commit
6d202ff20e
|
@ -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() ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue