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:
parent
9e8cf8f75b
commit
ee8509d6cb
@ -42,7 +42,8 @@ class SourceFiles;
|
|||||||
|
|
||||||
class QMakeLocalFileName {
|
class QMakeLocalFileName {
|
||||||
bool is_null;
|
bool is_null;
|
||||||
mutable QString real_name, local_name;
|
QString real_name;
|
||||||
|
mutable QString local_name;
|
||||||
public:
|
public:
|
||||||
QMakeLocalFileName() : is_null(true) {}
|
QMakeLocalFileName() : is_null(true) {}
|
||||||
QMakeLocalFileName(const QString &);
|
QMakeLocalFileName(const QString &);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user