mirror of git://gcc.gnu.org/git/gcc.git
14340.cc: Fix typos in instantiation of set and multiset (functor param given as int).
2004-07-05 Jonathan Wakely <redi@gcc.gnu.org> * testsuite/23_containers/{set,multiset}/14340.cc: Fix typos in instantiation of set and multiset (functor param given as int). From-SVN: r84112
This commit is contained in:
parent
7c6536faf7
commit
879dc459de
|
@ -1,3 +1,8 @@
|
|||
2004-07-05 Jonathan Wakely <redi@gcc.gnu.org>
|
||||
|
||||
* testsuite/23_containers/{set,multiset}/14340.cc: Fix typos in
|
||||
instantiation of set and multiset (functor param given as int).
|
||||
|
||||
2004-07-04 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/basic_string.h: Trivial formatting fixes and/or
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
// libstdc++/14340
|
||||
int main()
|
||||
{
|
||||
typedef std::multiset<int, int> container;
|
||||
typedef std::multiset<int> container;
|
||||
__gnu_test::conversion<container>::iterator_to_const_iterator();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
// libstdc++/14340
|
||||
int main()
|
||||
{
|
||||
typedef std::set<int, int> container;
|
||||
typedef std::set<int> container;
|
||||
__gnu_test::conversion<container>::iterator_to_const_iterator();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue