summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal
diff options
context:
space:
mode:
authorAnders Sundman (asum) <anders.sundman@tobii.com>2018-02-23 13:55:24 (GMT)
committerAnders Sundman (asum) <anders.sundman@tobii.com>2018-02-23 13:55:24 (GMT)
commit11e1dd257b805d2cddfbe03bd8de213fb23a4aae (patch)
treed8e3c917008caa3458053038b42e42d8ed144175 /googletest/include/gtest/internal
parenta490fb7a9a00d62e03d84e85e3e07ed127a21ef8 (diff)
downloadgoogletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.zip
googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.gz
googletest-11e1dd257b805d2cddfbe03bd8de213fb23a4aae.tar.bz2
Removed trailing comma in enum
Diffstat (limited to 'googletest/include/gtest/internal')
-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 a8a9a8c..db5a4ef 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.