add default return value for GrClip::operator==

This commit is contained in:
Lee Salzman 2015-12-03 15:21:57 -05:00
Родитель 588f0fa345
Коммит 2921c992ee
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -85,6 +85,8 @@ public:
return this->irect() == other.irect();
break;
}
return false;
}
bool operator!=(const GrClip& other) const {