aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkosak <kosak@google.com>2014-11-17 02:18:28 +0000
committerkosak <kosak@google.com>2014-11-17 02:18:28 +0000
commitcd99eb0bbd8391029cae1e05ad740f8404eb0b71 (patch)
treebc21471dd43fea095f0ae4253b57ddc4b0c79079
parent7123d831328321e854b78047effe7a57192a764f (diff)
downloadgoogletest-cd99eb0bbd8391029cae1e05ad740f8404eb0b71.tar.gz
googletest-cd99eb0bbd8391029cae1e05ad740f8404eb0b71.tar.bz2
googletest-cd99eb0bbd8391029cae1e05ad740f8404eb0b71.zip
Fix gmock-matchers_test's ConstIter.
-rw-r--r--test/gmock-matchers_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gmock-matchers_test.cc b/test/gmock-matchers_test.cc
index cb588470..f5eff5fb 100644
--- a/test/gmock-matchers_test.cc
+++ b/test/gmock-matchers_test.cc
@@ -4478,8 +4478,8 @@ class Streamlike {
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)