RTC_[D]CHECK_op: Remove "u" suffix on integer constants
There's no longer any need to make the two arguments have the same signedness, so we can drop the "u" suffix on literal integer arguments. NOPRESUBMIT=true BUG=webrtc:6645 Review-Url: https://codereview.webrtc.org/2535593002 Cr-Commit-Position: refs/heads/master@{#15280}
This commit is contained in:
@ -198,7 +198,7 @@ bool VCMCodecDataBase::SetSendCodec(const VideoCodec* send_codec,
|
||||
RTC_DCHECK_GE(number_of_cores, 1);
|
||||
RTC_DCHECK_GE(send_codec->plType, 1);
|
||||
// Make sure the start bit rate is sane...
|
||||
RTC_DCHECK_LE(send_codec->startBitrate, 1000000u);
|
||||
RTC_DCHECK_LE(send_codec->startBitrate, 1000000);
|
||||
RTC_DCHECK(send_codec->codecType != kVideoCodecUnknown);
|
||||
bool reset_required = pending_encoder_reset_;
|
||||
if (number_of_cores_ != number_of_cores) {
|
||||
|
||||
Reference in New Issue
Block a user