forked from boostorg/range
This commit was manufactured by cvs2svn to create tag
'merged_to_RC_1_34_0'. [SVN r37938]
This commit is contained in:
@@ -68,15 +68,15 @@ namespace boost {
|
|||||||
range_iterator
|
range_iterator
|
||||||
>
|
>
|
||||||
>();
|
>();
|
||||||
i = begin(a);
|
i = boost::begin(a);
|
||||||
i = end(a);
|
i = boost::end(a);
|
||||||
b = empty(a);
|
b = boost::empty(a);
|
||||||
const_constraints(a);
|
const_constraints(a);
|
||||||
}
|
}
|
||||||
void const_constraints(const T& a)
|
void const_constraints(const T& a)
|
||||||
{
|
{
|
||||||
ci = begin(a);
|
ci = boost::begin(a);
|
||||||
ci = end(a);
|
ci = boost::end(a);
|
||||||
}
|
}
|
||||||
T a;
|
T a;
|
||||||
range_iterator i;
|
range_iterator i;
|
||||||
@@ -99,7 +99,7 @@ namespace boost {
|
|||||||
typename range_iterator<T>::type
|
typename range_iterator<T>::type
|
||||||
>
|
>
|
||||||
>();
|
>();
|
||||||
s = size(a);
|
s = boost::size(a);
|
||||||
}
|
}
|
||||||
T a;
|
T a;
|
||||||
range_size s;
|
range_size s;
|
||||||
@@ -120,14 +120,14 @@ namespace boost {
|
|||||||
typename range_iterator<T>::type
|
typename range_iterator<T>::type
|
||||||
>
|
>
|
||||||
>();
|
>();
|
||||||
i = rbegin(a);
|
i = boost::rbegin(a);
|
||||||
i = rend(a);
|
i = boost::rend(a);
|
||||||
const_constraints(a);
|
const_constraints(a);
|
||||||
}
|
}
|
||||||
void const_constraints(const T& a)
|
void const_constraints(const T& a)
|
||||||
{
|
{
|
||||||
ci = rbegin(a);
|
ci = boost::rbegin(a);
|
||||||
ci = rend(a);
|
ci = boost::rend(a);
|
||||||
}
|
}
|
||||||
T a;
|
T a;
|
||||||
range_reverse_iterator i;
|
range_reverse_iterator i;
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
rule range-test ( name : includes * )
|
rule range-test ( name : includes * )
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
run $(name).cpp /boost/test//boost_unit_test_framework
|
run $(name).cpp /boost/test//boost_unit_test_framework/<link>static
|
||||||
:
|
:
|
||||||
:
|
:
|
||||||
: $(includes)
|
: $(includes)
|
||||||
|
Reference in New Issue
Block a user