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()); |
} |