55043.cc: Add missing namespace qualification.
authorJonathan Wakely <jwakely.gcc@gmail.com>
Wed, 20 Feb 2013 21:23:44 +0000 (21:23 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 20 Feb 2013 21:23:44 +0000 (21:23 +0000)
* testsuite/23_containers/unordered_set/55043.cc: Add missing
namespace qualification.
* testsuite/23_containers/unordered_multiset/55043.cc: Likewise.

From-SVN: r196183

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/23_containers/unordered_multiset/55043.cc
libstdc++-v3/testsuite/23_containers/unordered_set/55043.cc

index e93ce567d960cfdd449e0314872590003c0a71c0..4c3d10f0920805f1ea3f13f08c8c5be181ef141c 100644 (file)
@@ -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>
 
        * doc/doxygen/user.cfg.in: Set __cplusplus to 201103L. Change to
index 445e4e48bc3c017c9630ecaf49c3185df5b06fb9..9d71cff858395d9f2fdb1ec948c8715d6c889c88 100644 (file)
@@ -33,7 +33,7 @@ struct equal {
   bool operator()(const MoveOnly&, const MoveOnly) const { return true; }
 };
 struct hash {
-  size_t operator()(const MoveOnly&) const { return 0; }
+  std::size_t operator()(const MoveOnly&) const { return 0; }
 };
 
 template<typename Alloc>
index e5ba065f5d570a65a32191b6bb87b698a3c565c7..152489042f7ec87d8207748046359ca6196ffdc8 100644 (file)
@@ -33,7 +33,7 @@ struct equal {
   bool operator()(const MoveOnly&, const MoveOnly) const { return true; }
 };
 struct hash {
-  size_t operator()(const MoveOnly&) const { return 0; }
+  std::size_t operator()(const MoveOnly&) const { return 0; }
 };
 
 template<typename Alloc>