Commit 1f75f99f authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

Fix to remove /wd4018 (-Wno-sign-compare) for /build/config

This is a part of effort to remove /wd4018 warning suppression.

Master CL is
https://chromium-review.googlesource.com/c/chromium/src/+/1152755

This CL was uploaded by git cl split.

R=dpranke@chromium.org

Bug: 868248, 588506
Change-Id: I3c31dc8f72266eda85904c4a860e156fadb2a76e
Reviewed-on: https://chromium-review.googlesource.com/1152840
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#579311}
parent d0561d8a
......@@ -1302,7 +1302,6 @@ config("default_warnings") {
# http://crbug.com/588506 - Conversion suppressions waiting on Clang
# -Wconversion.
"/wd4018", # 'expression' : signed/unsigned mismatch
"/wd4245", # 'conversion' : conversion from 'type1' to 'type2',
# signed/unsigned mismatch
......
......@@ -37,7 +37,7 @@ class ThirdPartyMetricsRecorder : public ModuleDatabaseObserver {
void AddUnsignedModuleToCrashkeys(const base::string16& module_basename);
// The index of the crash key that is currently being updated.
int current_key_index_ = 0;
size_t current_key_index_ = 0;
// The value of the crash key that is currently being updated.
std::string current_value_;
......
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