From: Ivailo Monev Date: Wed, 24 Jul 2019 19:15:14 +0000 (+0000) Subject: private QFuture d member does not have to be mutable X-Git-Tag: 4.12.0~5371 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c3180313a0a1f433a35aa98a5a31f75a3df6dbf5;p=kde%2FKatie.git private QFuture d member does not have to be mutable Signed-off-by: Ivailo Monev --- 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)