chore: replace DCHECK(a > b) with DCHECK_GT
This commit is contained in:
parent
90a738a4d4
commit
b965abfda8
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ ULONG DesktopNotificationController::Toast::UIAutomationInterface::Release() {
|
||||||
delete this;
|
delete this;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
DCHECK(ret > 0);
|
DCHECK_GT(ret, 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue