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

Unified Diff: webrtc/voice_engine/utility.cc

Issue 2535593002: RTC_[D]CHECK_op: Remove "u" suffix on integer constants (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « webrtc/voice_engine/test/auto_test/fakes/loudest_filter.cc ('k') | webrtc/voice_engine/voe_base_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/utility.cc
diff --git a/webrtc/voice_engine/utility.cc b/webrtc/voice_engine/utility.cc
index 37e12cea4f6aff97c8b426b9d0f2e2d7979fb839..88c60fdc8d8906cb6cf9c5146237d52de206623f 100644
--- a/webrtc/voice_engine/utility.cc
+++ b/webrtc/voice_engine/utility.cc
@@ -82,10 +82,10 @@ void MixWithSat(int16_t target[],
const int16_t source[],
size_t source_channel,
size_t source_len) {
- RTC_DCHECK_GE(target_channel, 1u);
- RTC_DCHECK_LE(target_channel, 2u);
- RTC_DCHECK_GE(source_channel, 1u);
- RTC_DCHECK_LE(source_channel, 2u);
+ RTC_DCHECK_GE(target_channel, 1);
+ RTC_DCHECK_LE(target_channel, 2);
+ RTC_DCHECK_GE(source_channel, 1);
+ RTC_DCHECK_LE(source_channel, 2);
if (target_channel == 2 && source_channel == 1) {
// Convert source from mono to stereo.
« no previous file with comments | « webrtc/voice_engine/test/auto_test/fakes/loudest_filter.cc ('k') | webrtc/voice_engine/voe_base_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698