summaryrefslogtreecommitdiff
path: root/test/gtest-typed-test_test.h
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-07-22 02:16:37 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-07-22 02:16:37 +0000
commita773ef8a3b70936450c94bdcba1e6345a980244e (patch)
treef3f577a111e7b489673c0a48be6c5264bef3e1f2 /test/gtest-typed-test_test.h
parent1cdc76325936ad3312be0d456b4936c8b8e6bf70 (diff)
downloadgoogletest-a773ef8a3b70936450c94bdcba1e6345a980244e.tar.gz
Makes gtest compile clean with gcc -Wall -Werror (by Zhanyong Wan); refactors scons script (by Vlad Losev).
git-svn-id: http://googletest.googlecode.com/svn/trunk@287 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'test/gtest-typed-test_test.h')
-rw-r--r--test/gtest-typed-test_test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gtest-typed-test_test.h b/test/gtest-typed-test_test.h
index ecbe5b3..40dfeac 100644
--- a/test/gtest-typed-test_test.h
+++ b/test/gtest-typed-test_test.h
@@ -55,7 +55,7 @@ TYPED_TEST_P(ContainerTest, CanBeDefaultConstructed) {
TYPED_TEST_P(ContainerTest, InitialSizeIsZero) {
TypeParam container;
- EXPECT_EQ(0, container.size());
+ EXPECT_EQ(0U, container.size());
}
REGISTER_TYPED_TEST_CASE_P(ContainerTest,