summaryrefslogtreecommitdiffstats
path: root/googlemock
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-02-20 15:22:27 -0500
committerGennadiy Civil <misterg@google.com>2019-02-20 15:22:28 -0500
commitc374893023c9dcf637a370a265cacbf5ac7728ac (patch)
tree802c54cebf36fb54f658204c00ea604f26e3f7d2 /googlemock
parent873e479817d3e676416f761edb6be45dd601637f (diff)
parent2147806d2d5c0e88f6a8cbecc722f4f15bde9783 (diff)
downloadgoogletest-c374893023c9dcf637a370a265cacbf5ac7728ac.tar.gz
googletest-c374893023c9dcf637a370a265cacbf5ac7728ac.zip
Merge pull request #2123 from ngie-eign:clang-inconsistent-missing-override
PiperOrigin-RevId: 234840107
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/test/gmock-matchers_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc
index cdca2300..b586d276 100644
--- a/googlemock/test/gmock-matchers_test.cc
+++ b/googlemock/test/gmock-matchers_test.cc
@@ -6943,10 +6943,10 @@ TEST(ArgsTest, ExplainsMatchResultWithoutInnerExplanation) {
// For testing Args<>'s explanation.
class LessThanMatcher : public MatcherInterface<std::tuple<char, int> > {
public:
- virtual void DescribeTo(::std::ostream* os) const {}
+ void DescribeTo(::std::ostream* os) const override {}
- virtual bool MatchAndExplain(std::tuple<char, int> value,
- MatchResultListener* listener) const {
+ bool MatchAndExplain(std::tuple<char, int> value,
+ MatchResultListener* listener) const override {
const int diff = std::get<0>(value) - std::get<1>(value);
if (diff > 0) {
*listener << "where the first value is " << diff
OpenPOWER on IntegriCloud