diff --git a/src/network/access/qhttpnetworkrequest.cpp b/src/network/access/qhttpnetworkrequest.cpp
index 64172fc4fd2b9e5ea51caec55394f3500bfa10ae..f31c24b6a4cd0c1d881ae8356b2cef505897aecf 100644
--- a/src/network/access/qhttpnetworkrequest.cpp
+++ b/src/network/access/qhttpnetworkrequest.cpp
@@ -46,21 +46,21 @@ QHttpNetworkRequestPrivate::QHttpNetworkRequestPrivate(QHttpNetworkRequest::Oper
 {
 }
 
-QHttpNetworkRequestPrivate::QHttpNetworkRequestPrivate(const QHttpNetworkRequestPrivate &other)
-    : QHttpNetworkHeaderPrivate(other)
-{
-    operation = other.operation;
-    priority = other.priority;
-    uploadByteDevice = other.uploadByteDevice;
-    autoDecompress = other.autoDecompress;
-    pipeliningAllowed = other.pipeliningAllowed;
-    spdyAllowed = other.spdyAllowed;
-    customVerb = other.customVerb;
-    withCredentials = other.withCredentials;
-    ssl = other.ssl;
-    preConnect = other.preConnect;
-    followRedirect = other.followRedirect;
-    redirectCount = other.redirectCount;
+QHttpNetworkRequestPrivate::QHttpNetworkRequestPrivate(const QHttpNetworkRequestPrivate &other) // = default
+    : QHttpNetworkHeaderPrivate(other),
+      operation(other.operation),
+      customVerb(other.customVerb),
+      priority(other.priority),
+      uploadByteDevice(other.uploadByteDevice),
+      autoDecompress(other.autoDecompress),
+      pipeliningAllowed(other.pipeliningAllowed),
+      spdyAllowed(other.spdyAllowed),
+      withCredentials(other.withCredentials),
+      ssl(other.ssl),
+      preConnect(other.preConnect),
+      followRedirect(other.followRedirect),
+      redirectCount(other.redirectCount)
+{
 }
 
 QHttpNetworkRequestPrivate::~QHttpNetworkRequestPrivate()