mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
f46d686ef1
commit
4731c96644
|
|
@ -1,3 +1,9 @@
|
||||||
|
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 {
|
||||||
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 {
|
||||||
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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue