Whiteboard: Suppressed useless parentheses

This commit is contained in:
Gabriel Morin 2010-07-01 09:32:34 +00:00
parent f846887424
commit 5b89f29054

View file

@ -37,7 +37,7 @@ find_visitor::~find_visitor()
void find_visitor::visit_move(boost::shared_ptr<move> move)
{
if( &(move->get_unit()) == search_target_ )
if( &move->get_unit() == search_target_ )
{
search_result_.push_back(move);
}