Fix one warning.

This commit is contained in:
Maciej Suminski 2015-07-07 18:38:49 +02:00
parent f2785d35bf
commit 4fffd147f2
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ struct PNS_OPTIMIZER::CACHE_VISITOR
bool operator()( PNS_ITEM* aOtherItem )
{
if( !m_mask & aOtherItem->Kind() )
if( !( m_mask & aOtherItem->Kind() ) )
return true;
int clearance = m_node->GetClearance( aOtherItem, m_ourItem );