From c3180313a0a1f433a35aa98a5a31f75a3df6dbf5 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Wed, 24 Jul 2019 19:15:14 +0000 Subject: [PATCH] private QFuture d member does not have to be mutable Signed-off-by: Ivailo Monev --- src/core/concurrent/qfuture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/concurrent/qfuture.h b/src/core/concurrent/qfuture.h index 74548ac33..a255a402d 100644 --- a/src/core/concurrent/qfuture.h +++ b/src/core/concurrent/qfuture.h @@ -239,7 +239,7 @@ private: #ifdef QFUTURE_TEST public: #endif - mutable QFutureInterfaceBase d; + QFutureInterfaceBase d; }; inline QFuture &QFuture::operator=(const QFuture &other) -- 2.11.0