forked from boostorg/range
current version gave problem in regression ... to be updated later
[SVN r40612]
This commit is contained in:
@ -76,8 +76,8 @@ namespace boost {
|
|||||||
}
|
}
|
||||||
void const_constraints(const T& a)
|
void const_constraints(const T& a)
|
||||||
{
|
{
|
||||||
ci = boost::begin(a);
|
//ci = boost::begin(a);
|
||||||
ci = boost::end(a);
|
//ci = boost::end(a);
|
||||||
}
|
}
|
||||||
T a;
|
T a;
|
||||||
range_iterator i;
|
range_iterator i;
|
||||||
@ -121,8 +121,8 @@ namespace boost {
|
|||||||
}
|
}
|
||||||
void const_constraints(const T& a)
|
void const_constraints(const T& a)
|
||||||
{
|
{
|
||||||
ci = boost::rbegin(a);
|
//ci = boost::rbegin(a);
|
||||||
ci = boost::rend(a);
|
//ci = boost::rend(a);
|
||||||
}
|
}
|
||||||
T a;
|
T a;
|
||||||
range_reverse_iterator i;
|
range_reverse_iterator i;
|
||||||
|
Reference in New Issue
Block a user