Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: webrtc/base/callback_unittest.cc

Issue 1921653002: Enable -Winconsistent-missing-override flag. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/callback_unittest.cc
diff --git a/webrtc/base/callback_unittest.cc b/webrtc/base/callback_unittest.cc
index db294cd96eb71a5d59e9accb98080dc50a494a32..aba1e0ce28f393da273cc067b338f7098f5738c8 100644
--- a/webrtc/base/callback_unittest.cc
+++ b/webrtc/base/callback_unittest.cc
@@ -34,7 +34,7 @@ class RefCountedBindTester : public RefCountInterface {
int AddRef() const override {
return ++count_;
}
- int Release() const {
+ int Release() const override {
return --count_;
}
int RefCount() const { return count_; }

Powered by Google App Engine
This is Rietveld 408576698