Commit ffbc2bd2 authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Roll clang 372314:373424.

Ran `./tools/clang/scripts/upload_revision.py 64a362e7216a43e3ad44e50a89265e72aeb14294`.

...and fix one last Chrome OS-only new -Wtautological-compare warning.

Bug: 1006756,1007367
Change-Id: Id87271c20d8ca66a9a498de8fb716d818d279b48
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835192
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarSadrul Chowdhury <sadrul@chromium.org>
Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#702167}
parent 9b7d2ee6
......@@ -197,7 +197,7 @@ bool PowerStatus::BatteryImageInfo::ApproximatelyEqual(
}
// Otherwise, consider close values such as 42% and 45% as about the same.
return icon_badge == o.icon_badge && o.alert_if_low == o.alert_if_low &&
return icon_badge == o.icon_badge && alert_if_low == o.alert_if_low &&
std::abs(charge_percent - o.charge_percent) < 5;
}
......
......@@ -37,9 +37,9 @@ import zipfile
# Do NOT CHANGE this if you don't know what you're doing -- see
# https://chromium.googlesource.com/chromium/src/+/master/docs/updating_clang.md
# Reverting problematic clang rolls is safe, though.
CLANG_REVISION = '13bdae8541c3fc5acf6ee7de78ec5ab8446848e4'
CLANG_SVN_REVISION = '372314'
CLANG_SUB_REVISION = 2
CLANG_REVISION = '64a362e7216a43e3ad44e50a89265e72aeb14294'
CLANG_SVN_REVISION = '373424'
CLANG_SUB_REVISION = 1
PACKAGE_VERSION = '%s-%s-%s' % (CLANG_SVN_REVISION, CLANG_REVISION[:8],
CLANG_SUB_REVISION)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment