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

Unified Diff: webrtc/common_audio/signal_processing/real_fft_unittest.cc

Issue 2683033004: Enable cpplint and fix cpplint errors in webrtc/*audio (Closed)
Patch Set: Rebase Created 3 years, 9 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/common_audio/signal_processing/real_fft_unittest.cc
diff --git a/webrtc/common_audio/signal_processing/real_fft_unittest.cc b/webrtc/common_audio/signal_processing/real_fft_unittest.cc
index 282342230f278830be701c41927e5db5dbdcaabb..fcf11d73c8d61057a62fb8a6b2459e518132c4a9 100644
--- a/webrtc/common_audio/signal_processing/real_fft_unittest.cc
+++ b/webrtc/common_audio/signal_processing/real_fft_unittest.cc
@@ -35,9 +35,9 @@ const int16_t kRefData[kTimeDataLength] = {
class RealFFTTest : public ::testing::Test {
protected:
- RealFFTTest() {
- WebRtcSpl_Init();
- }
+ RealFFTTest() {
+ WebRtcSpl_Init();
+ }
};
TEST_F(RealFFTTest, CreateFailsOnBadInput) {
@@ -60,7 +60,7 @@ TEST_F(RealFFTTest, RealAndComplexMatch) {
for (i = 0, j = 0; i < kTimeDataLength; i += 1, j += 2) {
complex_fft_buff[j] = kRefData[i];
complex_fft_buff[j + 1] = 0; // Insert zero's to imaginary parts.
- };
+ }
// Create and run real forward FFT.
RealFFT* fft = WebRtcSpl_CreateRealFFT(kOrder);

Powered by Google App Engine
This is Rietveld 408576698