mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-29 12:27:33 +02:00
first stab at simplified version
[SVN r21482]
This commit is contained in:
@ -42,12 +42,15 @@ following pseudo-code. We use the abbreviation
|
||||
typedef remove_const<Value>::type value_type;
|
||||
|
||||
if (Reference is use_default) then
|
||||
typedef iterator_traits<V>::reference reference;
|
||||
if (Value is use_default) then
|
||||
typedef iterator_traits<V>::reference reference;
|
||||
else
|
||||
typedef Value& reference;
|
||||
else
|
||||
typedef Reference reference;
|
||||
|
||||
if (Value is use_default) then
|
||||
typedef iterator_traits<V>::pointer pointer;
|
||||
typedef ?? pointer;
|
||||
else
|
||||
typedef Value* pointer;
|
||||
|
||||
|
Reference in New Issue
Block a user