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

Unified Diff: webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.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/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc b/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
index 32f36c52617ff50b429ff1a48a9f045606b68037..276eb60e2805e8e0cca3aa806484571d41ef6b9c 100644
--- a/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
@@ -25,10 +25,10 @@ class IsacSpeedTest : public AudioCodecSpeedTest {
IsacSpeedTest();
void SetUp() override;
void TearDown() override;
- virtual float EncodeABlock(int16_t* in_data, uint8_t* bit_stream,
- size_t max_bytes, size_t* encoded_bytes);
- virtual float DecodeABlock(const uint8_t* bit_stream, size_t encoded_bytes,
- int16_t* out_data);
+ float EncodeABlock(int16_t* in_data, uint8_t* bit_stream,
+ size_t max_bytes, size_t* encoded_bytes) override;
+ float DecodeABlock(const uint8_t* bit_stream, size_t encoded_bytes,
+ int16_t* out_data) override;
ISACFIX_MainStruct *ISACFIX_main_inst_;
};

Powered by Google App Engine
This is Rietveld 408576698