summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Varga <pvarga@inf.u-szeged.hu>2019-10-04 09:27:07 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-10-07 08:49:37 +0000
commitaf6c0370a4e5d611423ce87418801426f799d6b6 (patch)
tree52f3b1bf70d7bf577a4fae91f32ef38f2f77f960
parentf6e864eb1499cf9206f460b53d12be318f42673e (diff)
FIXUP: Fix building with gcc 5
Fix MSVC build after gcc 5 build fix. Change-Id: I4fb7d2b8a4da9f2557471c6128fdff1132eb8b7f Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io>
-rw-r--r--chromium/google_apis/gaia/core_account_id.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/chromium/google_apis/gaia/core_account_id.cc b/chromium/google_apis/gaia/core_account_id.cc
index 99bec44e3a7..7318306ad64 100644
--- a/chromium/google_apis/gaia/core_account_id.cc
+++ b/chromium/google_apis/gaia/core_account_id.cc
@@ -17,6 +17,7 @@ CoreAccountId& CoreAccountId::operator=(const CoreAccountId&) = default;
CoreAccountId& CoreAccountId::operator=(CoreAccountId&& o) noexcept
{
id = std::move(o.id);
+ return *this;
}
CoreAccountId::CoreAccountId(const char* id) : id(id) {}