chore: replace DCHECK(a > b) with DCHECK_GT

This commit is contained in:
Samuel Attard 2019-03-21 22:55:48 -07:00
parent 90a738a4d4
commit b965abfda8

View file

@ -31,7 +31,7 @@ ULONG DesktopNotificationController::Toast::UIAutomationInterface::Release() {
delete this;
return 0;
}
DCHECK(ret > 0);
DCHECK_GT(ret, 0);
return ret;
}