remove warning

This commit is contained in:
bolero-MURAKAMI 2014-04-14 15:52:20 +09:00
parent 12e72dbf7e
commit 705773a03a
4 changed files with 78 additions and 78 deletions

View file

@ -28,7 +28,7 @@ namespace sprout {
int found
)
{
return found < 0 || found == 2 && size1 < size2;
return found < 0 || (found == 2 && size1 < size2);
}
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Compare>