mirror of
https://github.com/boostorg/stl_interfaces.git
synced 2026-01-19 04:42:12 +00:00
Fix Clang build.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user