aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Sundman (asum) <anders.sundman@tobii.com>2018-02-23 14:55:24 +0100
committerAnders Sundman (asum) <anders.sundman@tobii.com>2018-02-23 14:55:24 +0100
commit11e1dd257b805d2cddfbe03bd8de213fb23a4aae (patch)
treed8e3c917008caa3458053038b42e42d8ed144175
parenta490fb7a9a00d62e03d84e85e3e07ed127a21ef8 (diff)
downloadgoogletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.gz
googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.bz2
googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.zip
Removed trailing comma in enum
-rw-r--r--googletest/include/gtest/internal/gtest-internal.h2
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.