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

Unified Diff: webrtc/modules/audio_processing/test/bitexactness_tools.cc

Issue 2623313004: Replace RTC_DCHECK(false) with RTC_NOTREACHED(). (Closed)
Patch Set: Created 3 years, 11 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/test/bitexactness_tools.cc
diff --git a/webrtc/modules/audio_processing/test/bitexactness_tools.cc b/webrtc/modules/audio_processing/test/bitexactness_tools.cc
index 59b9325ad775d62586310894ffc0957fcd2c8942..9c8a97ce0cae0fc953c1917fe3865fd883534209 100644
--- a/webrtc/modules/audio_processing/test/bitexactness_tools.cc
+++ b/webrtc/modules/audio_processing/test/bitexactness_tools.cc
@@ -32,7 +32,7 @@ std::string GetApmRenderTestVectorFileName(int sample_rate_hz) {
case 48000:
return ResourcePath("far48_stereo", "pcm");
default:
- RTC_DCHECK(false);
+ RTC_NOTREACHED();
}
return "";
}
@@ -48,7 +48,7 @@ std::string GetApmCaptureTestVectorFileName(int sample_rate_hz) {
case 48000:
return ResourcePath("near48_stereo", "pcm");
default:
- RTC_DCHECK(false);
+ RTC_NOTREACHED();
}
return "";
}
« no previous file with comments | « webrtc/modules/audio_processing/ns/nsx_core.c ('k') | webrtc/modules/desktop_capture/screen_drawer_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698