added full namespace qualifiers in get<N> calls to avoid errors

in edg-strict mode


[SVN r11133]
This commit is contained in:
Jaakko Järvi
2001-09-17 10:32:32 +00:00
parent 66ae617224
commit 063758ef7f

View File

@ -287,7 +287,7 @@ struct cons {
typename element<N, cons<HT, TT> >::type typename element<N, cons<HT, TT> >::type
>::non_const_type >::non_const_type
get() { get() {
return boost::get<N>(*this); // delegate to non-member get return boost::tuples::get<N>(*this); // delegate to non-member get
} }
template <int N> template <int N>
@ -295,7 +295,7 @@ struct cons {
typename element<N, cons<HT, TT> >::type typename element<N, cons<HT, TT> >::type
>::const_type >::const_type
get() const { get() const {
return boost::get<N>(*this); // delegate to non-member get return boost::tuples::get<N>(*this); // delegate to non-member get
} }
}; };
@ -345,7 +345,7 @@ struct cons<HT, null_type> {
typename element<N, cons>::type typename element<N, cons>::type
>::non_const_type >::non_const_type
get() { get() {
return boost::get<N>(*this); return boost::tuples::get<N>(*this);
} }
template <int N> template <int N>
@ -353,7 +353,7 @@ struct cons<HT, null_type> {
typename element<N, cons>::type typename element<N, cons>::type
>::const_type >::const_type
get() const { get() const {
return boost::get<N>(*this); return boost::tuples::get<N>(*this);
} }
}; };