QMakeLocalFileName: remove mutable specifier from real_name

There is no need to have both QString member mutable.

Change-Id: I592963b7c66e564b918d750fb47e903df0b0f9bc
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
This commit is contained in:
Joerg Bornemann 2019-08-06 14:30:43 +02:00
parent 9e8cf8f75b
commit ee8509d6cb

View File

@ -42,7 +42,8 @@ class SourceFiles;
class QMakeLocalFileName {
bool is_null;
mutable QString real_name, local_name;
QString real_name;
mutable QString local_name;
public:
QMakeLocalFileName() : is_null(true) {}
QMakeLocalFileName(const QString &);