aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/gmock_link_test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gmock_link_test.h b/test/gmock_link_test.h
index 96cd79fb..4e0adb71 100644
--- a/test/gmock_link_test.h
+++ b/test/gmock_link_test.h
@@ -501,7 +501,7 @@ TEST(LinkTest, TestMatcherRef) {
// Tests the linkage of the TypedEq matcher.
TEST(LinkTest, TestMatcherTypedEq) {
Mock mock;
- unsigned long a = 0;
+ long a = 0;
ON_CALL(mock, VoidFromIntRef(TypedEq<int&>(a))).WillByDefault(Return());
}