mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-21 08:32:08 +02:00
Bug fix for ticket #12895: Apply remove_reference before remove_cv
This commit is contained in:
@ -83,7 +83,7 @@ namespace iterators {
|
||||
struct result<This(Iterator)>
|
||||
{
|
||||
typedef typename
|
||||
remove_reference<typename remove_cv<Iterator>::type>::type
|
||||
remove_cv<typename remove_reference<Iterator>::type>::type
|
||||
iterator;
|
||||
|
||||
typedef typename iterator_reference<iterator>::type type;
|
||||
|
Reference in New Issue
Block a user