Closed GoogleCodeExporter closed 9 years ago
Original comment by zhanyong...@gmail.com
on 22 Sep 2009 at 4:20
I just checked the trunk head. Compiling it with -Wall -Wextra using g++ 4.2.4
generates no warning. I think it was already fixed in trunk.
Original comment by zhanyong...@gmail.com
on 23 Sep 2009 at 10:26
Confirmed, r127 fixes most of them. I found one more that is still left, though:
--- gmock-matchers.h.orig 2009-09-24 09:39:32.000000000 +0200
+++ gmock-matchers.h 2009-09-24 09:39:51.000000000 +0200
@@ -1611,7 +1611,7 @@
typedef typename Functor::result_type ResultType;
typedef Functor StorageType;
- static void CheckIsValid(Functor functor) {}
+ static void CheckIsValid(Functor /* functor */) {}
template <typename T>
static ResultType Invoke(Functor f, T arg) { return f(arg); }
};
Original comment by joel.ros...@gmail.com
on 24 Sep 2009 at 7:41
Original issue reported on code.google.com by
joel.ros...@gmail.com
on 22 Sep 2009 at 3:51