fix build failure due to missing std::equal overload

This commit is contained in:
Crzyrndm 2018-07-03 14:37:24 +12:00
parent e016170022
commit 887dfa56da

View File

@ -139,7 +139,7 @@ const std::vector<ext_list::ext> &ext_list::extensions() const
bool ext_list::operator==(const ext_list &rhs) const
{
return std::equal(extensions_.begin(), extensions_.end(), rhs.extensions_.begin(), rhs.extensions_.end());
return extensions_ == rhs.extensions_;
}
}