forked from qt-creator/qt-creator
Qmake: Initialize members of LastKit
Change-Id: I7effa619403df78acd34cab3d41a9913a1e4aea1 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -756,10 +756,7 @@ BuildConfiguration::BuildType QmakeBuildConfiguration::buildType() const
|
|||||||
return Release;
|
return Release;
|
||||||
}
|
}
|
||||||
|
|
||||||
QmakeBuildConfiguration::LastKitState::LastKitState()
|
QmakeBuildConfiguration::LastKitState::LastKitState() { }
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
QmakeBuildConfiguration::LastKitState::LastKitState(Kit *k)
|
QmakeBuildConfiguration::LastKitState::LastKitState(Kit *k)
|
||||||
: m_qtVersion(QtKitInformation::qtVersionId(k)),
|
: m_qtVersion(QtKitInformation::qtVersionId(k)),
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ private:
|
|||||||
bool operator ==(const LastKitState &other) const;
|
bool operator ==(const LastKitState &other) const;
|
||||||
bool operator !=(const LastKitState &other) const;
|
bool operator !=(const LastKitState &other) const;
|
||||||
private:
|
private:
|
||||||
int m_qtVersion;
|
int m_qtVersion = -1;
|
||||||
QByteArray m_toolchain;
|
QByteArray m_toolchain;
|
||||||
QString m_sysroot;
|
QString m_sysroot;
|
||||||
QString m_mkspec;
|
QString m_mkspec;
|
||||||
|
|||||||
Reference in New Issue
Block a user