From 8fc53e97644657e349fe1682a73429df7675f9e3 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 16 Oct 2018 12:33:22 +0200 Subject: [PATCH] Modernize non-existing IDevice::operator=() Change-Id: Ia22ba1f307ef25348466740564072fd6fe8d6c9c Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/devicesupport/idevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/devicesupport/idevice.h b/src/plugins/projectexplorer/devicesupport/idevice.h index 493b7b306e4..d917fc18636 100644 --- a/src/plugins/projectexplorer/devicesupport/idevice.h +++ b/src/plugins/projectexplorer/devicesupport/idevice.h @@ -211,7 +211,7 @@ protected: IDevice(const IDevice &other); private: - IDevice &operator=(const IDevice &); // Unimplemented. + IDevice &operator=(const IDevice &) = delete; int version() const;