diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-03-05 01:16:12 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-03-05 01:16:12 +0000 |
commit | 66ac4909aea5c4dc9c43e6f11518c34049c6bd5e (patch) | |
tree | 506d3cc6e9b9ac6a5dd8f9c1e7eb5a6120c7d5bc | |
parent | f4419791abd9d0962eb5a61003b7f4b80d7e4068 (diff) | |
download | googletest-66ac4909aea5c4dc9c43e6f11518c34049c6bd5e.tar.gz googletest-66ac4909aea5c4dc9c43e6f11518c34049c6bd5e.tar.bz2 googletest-66ac4909aea5c4dc9c43e6f11518c34049c6bd5e.zip |
Fixes non-conforming uses of commas in enums s.t. the code compiles on
Sun OS. Patch by Hady Zalek.
-rw-r--r-- | test/gtest-printers_test.cc | 4 | ||||
-rw-r--r-- | test/gtest_unittest.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/gtest-printers_test.cc b/test/gtest-printers_test.cc index 9aba39a4..8992a9a7 100644 --- a/test/gtest-printers_test.cc +++ b/test/gtest-printers_test.cc @@ -74,7 +74,7 @@ enum EnumWithoutPrinter { // An enum with a << operator. enum EnumWithStreaming { - kEWS1 = 10, + kEWS1 = 10 }; std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) { @@ -83,7 +83,7 @@ std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) { // An enum with a PrintTo() function. enum EnumWithPrintTo { - kEWPT1 = 1, + kEWPT1 = 1 }; void PrintTo(EnumWithPrintTo e, std::ostream* os) { diff --git a/test/gtest_unittest.cc b/test/gtest_unittest.cc index 3f0456e9..e6619d57 100644 --- a/test/gtest_unittest.cc +++ b/test/gtest_unittest.cc @@ -3811,7 +3811,7 @@ TEST(AssertionTest, ExpectWorksWithUncopyableObject) { enum NamedEnum { kE1 = 0, - kE2 = 1, + kE2 = 1 }; TEST(AssertionTest, NamedEnum) { |