summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-02-06 11:10:55 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-02-07 18:42:03 +0000
commitd19b6b3a2a7d56644a954116638ac032ec23e9d8 (patch)
treec0c4787306635bf5543aae65aae80898fa2a6230
parent25b4bdf70f475ea480fe1a853025f806621205a0 (diff)
downloadqtwebengine-chromium-d19b6b3a2a7d56644a954116638ac032ec23e9d8.tar.gz
FIXUP: Work-around GCC bug
Change-Id: I7ec00c85e889884f97aff4c11ec87c000e10773c Reviewed-by: Kirill Burtsev <kirill.burtsev@qt.io>
-rw-r--r--chromium/gpu/config/gpu_info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/gpu/config/gpu_info.cc b/chromium/gpu/config/gpu_info.cc
index 717eac001d0..1acf381d4f8 100644
--- a/chromium/gpu/config/gpu_info.cc
+++ b/chromium/gpu/config/gpu_info.cc
@@ -181,7 +181,7 @@ GPUInfo::GPUDevice& GPUInfo::GPUDevice::operator=(
device_string = std::move(other.device_string);
driver_vendor = std::move(other.driver_vendor);
driver_version = std::move(other.driver_version);
- driver_date = std::move(other.driver_date);
+ cuda_compute_capability_major = std::move(other.cuda_compute_capability_major);
return *this;
}