Fixes non-conforming uses of commas in enums s.t. the code compiles on

Sun OS. Patch by Hady Zalek.
This commit is contained in:
zhanyong.wan
2011-03-05 01:16:12 +00:00
parent f4419791ab
commit 66ac4909ae
2 changed files with 3 additions and 3 deletions

View File

@@ -3811,7 +3811,7 @@ TEST(AssertionTest, ExpectWorksWithUncopyableObject) {
enum NamedEnum {
kE1 = 0,
kE2 = 1,
kE2 = 1
};
TEST(AssertionTest, NamedEnum) {