Fix gmock-matchers_test's ConstIter.
diff --git a/test/gmock-matchers_test.cc b/test/gmock-matchers_test.cc
index cb58847..f5eff5f 100644
--- a/test/gmock-matchers_test.cc
+++ b/test/gmock-matchers_test.cc
@@ -4478,8 +4478,8 @@
   class ConstIter : public std::iterator<std::input_iterator_tag,
                                          value_type,
                                          ptrdiff_t,
-                                         const value_type&,
-                                         const value_type*> {
+                                         const value_type*,
+                                         const value_type&> {
    public:
     ConstIter(const Streamlike* s,
               typename std::list<value_type>::iterator pos)