forked from boostorg/iterator
Converted leftover boost::true/false_type to std in iterator_facade.hpp.
This commit is contained in:
@ -164,14 +164,14 @@ namespace iterators {
|
||||
|
||||
template <class T>
|
||||
struct is_not_writable_postfix_increment_dereference_proxy :
|
||||
public boost::true_type
|
||||
public std::true_type
|
||||
{};
|
||||
|
||||
template <class Iterator>
|
||||
struct is_not_writable_postfix_increment_dereference_proxy<
|
||||
writable_postfix_increment_dereference_proxy<Iterator>
|
||||
> :
|
||||
public boost::false_type
|
||||
public std::false_type
|
||||
{};
|
||||
|
||||
template <class Iterator>
|
||||
|
Reference in New Issue
Block a user