mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-22 17:07:16 +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)>
|
struct result<This(Iterator)>
|
||||||
{
|
{
|
||||||
typedef typename
|
typedef typename
|
||||||
remove_reference<typename remove_cv<Iterator>::type>::type
|
remove_cv<typename remove_reference<Iterator>::type>::type
|
||||||
iterator;
|
iterator;
|
||||||
|
|
||||||
typedef typename iterator_reference<iterator>::type type;
|
typedef typename iterator_reference<iterator>::type type;
|
||||||
|
Reference in New Issue
Block a user