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

Unified Diff: webrtc/modules/audio_processing/transient/moving_moments.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_processing/transient/moving_moments.cc
diff --git a/webrtc/modules/audio_processing/transient/moving_moments.cc b/webrtc/modules/audio_processing/transient/moving_moments.cc
index bc0b6f0b9193a7f09cb73d1e343ed0a6b8d3b782..8bca505aef53c17cd0d966c86b2e0574f4257e55 100644
--- a/webrtc/modules/audio_processing/transient/moving_moments.cc
+++ b/webrtc/modules/audio_processing/transient/moving_moments.cc
@@ -22,7 +22,7 @@ MovingMoments::MovingMoments(size_t length)
queue_(),
sum_(0.0),
sum_of_squares_(0.0) {
- RTC_DCHECK_GT(length, 0u);
+ RTC_DCHECK_GT(length, 0);
for (size_t i = 0; i < length; ++i) {
queue_.push(0.0);
}
« no previous file with comments | « webrtc/modules/audio_processing/test/test_utils.cc ('k') | webrtc/modules/audio_processing/transient/wpd_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698