🔨 fixed an error in MSVC

This commit is contained in:
Niels Lohmann 2017-07-27 06:04:35 +02:00
parent 3d589fd032
commit 669ebf51bc
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -4333,7 +4333,7 @@ template<typename IteratorType> class iteration_proxy
}
/// inequality operator (needed for range-based for)
constexpr bool operator!=(const iteration_proxy_internal& o) const
bool operator!=(const iteration_proxy_internal& o) const noexcept
{
return anchor != o.anchor;
}