forked from qt-creator/qt-creator
QMakeProjectManager: Introduce member initialization.
Change-Id: I69df0c22a215b2df12f63fdc47082e9797fc02ac Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
@@ -75,16 +75,10 @@ private:
|
||||
class QmakeBuildConfig
|
||||
{
|
||||
public:
|
||||
QmakeBuildConfig()
|
||||
: explicitDebug(false),
|
||||
explicitRelease(false),
|
||||
explicitBuildAll(false),
|
||||
explicitNoBuildAll(false)
|
||||
{}
|
||||
bool explicitDebug;
|
||||
bool explicitRelease;
|
||||
bool explicitBuildAll;
|
||||
bool explicitNoBuildAll;
|
||||
bool explicitDebug = false;
|
||||
bool explicitRelease = false;
|
||||
bool explicitBuildAll = false;
|
||||
bool explicitNoBuildAll = false;
|
||||
};
|
||||
|
||||
MakefileState m_state;
|
||||
|
||||
Reference in New Issue
Block a user