From 887dfa56da05b447b383be25c5a37b07270a76c2 Mon Sep 17 00:00:00 2001 From: Crzyrndm Date: Tue, 3 Jul 2018 14:37:24 +1200 Subject: [PATCH] fix build failure due to missing std::equal overload --- source/packaging/ext_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/packaging/ext_list.cpp b/source/packaging/ext_list.cpp index 26988655..ac06f795 100644 --- a/source/packaging/ext_list.cpp +++ b/source/packaging/ext_list.cpp @@ -139,7 +139,7 @@ const std::vector &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_; } } \ No newline at end of file