From c1a6765fd90376da3b4ccc4cb96673afebaff0e3 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Thu, 22 Jun 2017 20:52:33 +0200 Subject: QOperatingSystemVersion: remove unneded copy ctor declaration The copy constructor is not disabled by any user-defined move or copy special member function, and thus does not need to be = default'ed. Change-Id: I90586d25756885ac77f0946c147079efb5d1b1e0 Reviewed-by: Jake Petroules Reviewed-by: Thiago Macieira --- src/corelib/global/qoperatingsystemversion.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/corelib/global/qoperatingsystemversion.h b/src/corelib/global/qoperatingsystemversion.h index 295365aad1..9345982658 100644 --- a/src/corelib/global/qoperatingsystemversion.h +++ b/src/corelib/global/qoperatingsystemversion.h @@ -81,7 +81,6 @@ public: static const QOperatingSystemVersion AndroidNougat; static const QOperatingSystemVersion AndroidNougat_MR1; - QOperatingSystemVersion(const QOperatingSystemVersion &other) = default; Q_DECL_CONSTEXPR QOperatingSystemVersion(OSType osType, int vmajor, int vminor = -1, int vmicro = -1) : m_os(osType), -- cgit v1.2.3