Commit 14ace5a6 authored by Maksim Ivanov's avatar Maksim Ivanov Committed by Chromium LUCI CQ

Fix useless move() in //components/autofill/core/browser/geo/

Drop the std::move() call that has no effect and only triggers the
"bugprone-use-after-move" clang-tidy warning.

Bug: 1122844
Change-Id: I04d29171f6ced2fc129bff5bafb19a35acf2815f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2611028
Commit-Queue: Matthias Körber <koerber@google.com>
Auto-Submit: Maksim Ivanov <emaxx@chromium.org>
Reviewed-by: default avatarMatthias Körber <koerber@google.com>
Cr-Commit-Position: refs/heads/master@{#841032}
parent ace2b065
......@@ -113,7 +113,7 @@ void AlternativeStateNameMapUpdater::PopulateAlternativeStateNameMap(
continue;
}
country_to_state_names_map[country].push_back(std::move(normalized_state));
country_to_state_names_map[country].push_back(normalized_state);
parsed_state_values_.insert({country, normalized_state});
}
......
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