re PR libstdc++/18690 (tr1/utility is broken on darwin)

2004-11-27  Paolo Carlini  <pcarlini@suse.de>

	PR libstdc++/18690
	* include/tr1/utility (get(pair), get(const pair)): Change
	occurrences of _I to _Int.

From-SVN: r91390
This commit is contained in:
Paolo Carlini 2004-11-27 20:25:11 +00:00 committed by Paolo Carlini
parent 4961e35da5
commit 84477ec3e8
2 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2004-11-27 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/18690
* include/tr1/utility (get(pair), get(const pair)): Change
occurrences of _I to _Int.
2004-11-27 Paolo Carlini <pcarlini@suse.de>
* testsuite/27_io/basic_istream/getline/wchar_t/2.cc: Fix typo.

View File

@ -74,15 +74,15 @@ namespace tr1
{ return __pair.second; }
};
template<int _I, class _Tp1, class _Tp2>
typename tuple_element<_I, std::pair<_Tp1, _Tp2> >::type&
template<int _Int, class _Tp1, class _Tp2>
typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
get(pair<_Tp1, _Tp2>& __in)
{ return __pair_get<_I>::__get(__in); }
{ return __pair_get<_Int>::__get(__in); }
template<int _I, class _Tp1, class _Tp2>
const typename tuple_element<_I, std::pair<_Tp1, _Tp2> >::type&
template<int _Int, class _Tp1, class _Tp2>
const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
get(const pair<_Tp1, _Tp2>& __in)
{ return __pair_get<_I>::__const_get(__in); }
{ return __pair_get<_Int>::__const_get(__in); }
}
}