webrtc: Remove semicolons.

Bug: chromium:926235
Change-Id: I66c10ab3df38adf87152d1f18cc8162afedca7e4
Reviewed-on: https://webrtc-review.googlesource.com/c/123560
Commit-Queue: Tommi <tommi@webrtc.org>
Reviewed-by: Tommi <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26780}
This commit is contained in:
Nico Weber
2019-02-20 10:13:16 -05:00
committed by Commit Bot
parent af623ae7f8
commit 22f9925b3e
27 changed files with 86 additions and 88 deletions

View File

@ -306,7 +306,7 @@ class AecState {
class SaturationDetector {
public:
// Returns whether the echo is to be considered saturated.
bool SaturatedEcho() const { return saturated_echo_; };
bool SaturatedEcho() const { return saturated_echo_; }
// Updates the detection decision based on new data.
void Update(rtc::ArrayView<const float> x,
@ -327,7 +327,7 @@ class AecState {
explicit LegacySaturationDetector(const EchoCanceller3Config& config);
// Returns whether the echo is to be considered saturated.
bool SaturatedEcho() const { return saturated_echo_; };
bool SaturatedEcho() const { return saturated_echo_; }
// Resets the state of the detector.
void Reset();

View File

@ -54,4 +54,4 @@ float GetExtraSaturationMarginOffsetDb() {
constexpr float kDefaultExtraSaturationMarginDb = 2.f;
return kDefaultExtraSaturationMarginDb;
}
}; // namespace webrtc
} // namespace webrtc

View File

@ -22,7 +22,7 @@ class GainApplier {
void ApplyGain(AudioFrameView<float> signal);
void SetGainFactor(float gain_factor);
float GetGainFactor() const { return current_gain_factor_; };
float GetGainFactor() const { return current_gain_factor_; }
private:
void Initialize(size_t samples_per_channel);

View File

@ -54,7 +54,7 @@ std::string FormFileName(const char* output_dir,
ApmDataDumper::ApmDataDumper(int instance_index)
: instance_index_(instance_index) {}
#else
ApmDataDumper::ApmDataDumper(int instance_index){};
ApmDataDumper::ApmDataDumper(int instance_index) {}
#endif
ApmDataDumper::~ApmDataDumper() = default;