mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
fix build failure due to missing std::equal overload
This commit is contained in:
parent
e016170022
commit
887dfa56da
|
@ -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_;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user