Converted leftover boost::true/false_type to std in iterator_facade.hpp.

This commit is contained in:
Andrey Semashev 2025-01-29 02:13:10 +03:00
parent 83905b219e
commit 241c28018e

View File

@ -164,14 +164,14 @@ namespace iterators {
template <class T> template <class T>
struct is_not_writable_postfix_increment_dereference_proxy : struct is_not_writable_postfix_increment_dereference_proxy :
public boost::true_type public std::true_type
{}; {};
template <class Iterator> template <class Iterator>
struct is_not_writable_postfix_increment_dereference_proxy< struct is_not_writable_postfix_increment_dereference_proxy<
writable_postfix_increment_dereference_proxy<Iterator> writable_postfix_increment_dereference_proxy<Iterator>
> : > :
public boost::false_type public std::false_type
{}; {};
template <class Iterator> template <class Iterator>