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

Unified Diff: webrtc/modules/audio_processing/beamformer/complex_matrix.h

Issue 1335923002: Add RTC_ prefix to (D)CHECKs and related macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 5 years, 3 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_processing/beamformer/complex_matrix.h
diff --git a/webrtc/modules/audio_processing/beamformer/complex_matrix.h b/webrtc/modules/audio_processing/beamformer/complex_matrix.h
index f5be2b2f63c29a8e065e61fe22f933a9172f18e0..bfa3563b898cfdbe9520b6abde3f823d39faea3d 100644
--- a/webrtc/modules/audio_processing/beamformer/complex_matrix.h
+++ b/webrtc/modules/audio_processing/beamformer/complex_matrix.h
@@ -59,8 +59,8 @@ class ComplexMatrix : public Matrix<complex<T> > {
}
ComplexMatrix& ConjugateTranspose(const ComplexMatrix& operand) {
- CHECK_EQ(operand.num_rows(), this->num_columns());
- CHECK_EQ(operand.num_columns(), this->num_rows());
+ RTC_CHECK_EQ(operand.num_rows(), this->num_columns());
+ RTC_CHECK_EQ(operand.num_columns(), this->num_rows());
return ConjugateTranspose(operand.elements());
}
« no previous file with comments | « webrtc/modules/audio_processing/agc/agc.cc ('k') | webrtc/modules/audio_processing/beamformer/covariance_matrix_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698