Commit 879dc459 by Jonathan Wakely

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
parent 7c6536fa
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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment