diff options
| author | Anders Sundman (asum) <anders.sundman@tobii.com> | 2018-02-23 14:55:24 +0100 |
|---|---|---|
| committer | Anders Sundman (asum) <anders.sundman@tobii.com> | 2018-02-23 14:55:24 +0100 |
| commit | 11e1dd257b805d2cddfbe03bd8de213fb23a4aae (patch) | |
| tree | d8e3c917008caa3458053038b42e42d8ed144175 | |
| parent | a490fb7a9a00d62e03d84e85e3e07ed127a21ef8 (diff) | |
| download | googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.gz googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.bz2 googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.zip | |
Removed trailing comma in enum
| -rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index a8a9a8c1..db5a4eff 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -1050,7 +1050,7 @@ class NativeArray { private: enum { kCheckTypeIsNotConstOrAReference = StaticAssertTypeEqHelper< - Element, GTEST_REMOVE_REFERENCE_AND_CONST_(Element)>::value, + Element, GTEST_REMOVE_REFERENCE_AND_CONST_(Element)>::value }; // Initializes this object with a copy of the input. |
