Commit 4731c966 by Jonathan Wakely Committed by Jonathan Wakely

55043.cc: Add missing namespace qualification.

	* testsuite/23_containers/unordered_set/55043.cc: Add missing
	namespace qualification.
	* testsuite/23_containers/unordered_multiset/55043.cc: Likewise.

From-SVN: r196183
parent f46d686e
2013-02-20 Jonathan Wakely <jwakely.gcc@gmail.com>
* testsuite/23_containers/unordered_set/55043.cc: Add missing
namespace qualification.
* testsuite/23_containers/unordered_multiset/55043.cc: Likewise.
2013-02-19 Benjamin Kosnik <bkoz@redhat.com> 2013-02-19 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/user.cfg.in: Set __cplusplus to 201103L. Change to * doc/doxygen/user.cfg.in: Set __cplusplus to 201103L. Change to
......
...@@ -33,7 +33,7 @@ struct equal { ...@@ -33,7 +33,7 @@ struct equal {
bool operator()(const MoveOnly&, const MoveOnly) const { return true; } bool operator()(const MoveOnly&, const MoveOnly) const { return true; }
}; };
struct hash { struct hash {
size_t operator()(const MoveOnly&) const { return 0; } std::size_t operator()(const MoveOnly&) const { return 0; }
}; };
template<typename Alloc> template<typename Alloc>
......
...@@ -33,7 +33,7 @@ struct equal { ...@@ -33,7 +33,7 @@ struct equal {
bool operator()(const MoveOnly&, const MoveOnly) const { return true; } bool operator()(const MoveOnly&, const MoveOnly) const { return true; }
}; };
struct hash { struct hash {
size_t operator()(const MoveOnly&) const { return 0; } std::size_t operator()(const MoveOnly&) const { return 0; }
}; };
template<typename Alloc> template<typename Alloc>
......
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