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

Unified Diff: webrtc/modules/audio_coding/neteq/delay_peak_detector.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
Index: webrtc/modules/audio_coding/neteq/delay_peak_detector.cc
diff --git a/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc b/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc
index 10535e23f53c816c987b2b60280cf5a7113b87bc..5763572bade2adcd68c03575feb6295e90d3c932 100644
--- a/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc
+++ b/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc
@@ -66,7 +66,7 @@ uint64_t DelayPeakDetector::MaxPeakPeriod() const {
if (max_period_element == peak_history_.end()) {
return 0; // |peak_history_| is empty.
}
- RTC_DCHECK_GT(max_period_element->period_ms, 0u);
+ RTC_DCHECK_GT(max_period_element->period_ms, 0);
return max_period_element->period_ms;
}
« no previous file with comments | « webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc ('k') | webrtc/modules/audio_coding/neteq/nack_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698