commit | f14c47a58cb2a333cb9b11aef593f0e632fdb28a | [log] [tgz] |
---|---|---|
author | Peter Boström <pbos@webrtc.org> | Wed Feb 24 16:51:18 2016 +0100 |
committer | Peter Boström <pbos@webrtc.org> | Wed Feb 24 15:51:23 2016 +0000 |
tree | 4b2c654310edee8a8884ddb1dae67b2d243956a1 | |
parent | 985177c757f84477b3d8600cd9b0f733c827a362 [diff] [blame] |
Remove ignored return code from modules. ModuleProcessImpl doesn't act on return codes and having them around is confusing (it's unclear what an error return code here would do even). BUG= R=tommi@webrtc.org Review URL: https://codereview.webrtc.org/1703833002 . Cr-Commit-Position: refs/heads/master@{#11747}
diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h index f4381e2..2c0b2e3 100644 --- a/webrtc/modules/congestion_controller/include/congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -65,7 +65,7 @@ // Implements Module. int64_t TimeUntilNextProcess() override; - int32_t Process() override; + void Process() override; private: Clock* const clock_;