Fix Clang build.

This commit is contained in:
Zach Laine
2019-08-22 00:56:16 -05:00
parent ddda3f28b8
commit cc63a47768

View File

@@ -10,6 +10,7 @@
#include <boost/assert.hpp>
#include <algorithm>
#include <stdexcept>
@@ -555,7 +556,7 @@ namespace boost { namespace stl_interfaces { inline namespace v1 {
true)
{
return lhs.size() == rhs.size() &&
std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
std::equal(lhs.begin(), lhs.end(), rhs.begin());
}
/** Implementation of `operator!=()` for all containers derived from