summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/deployablefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/deployablefile.h')
-rw-r--r--src/plugins/projectexplorer/deployablefile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/deployablefile.h b/src/plugins/projectexplorer/deployablefile.h
index 4517b2e62e..70d05c29e8 100644
--- a/src/plugins/projectexplorer/deployablefile.h
+++ b/src/plugins/projectexplorer/deployablefile.h
@@ -42,7 +42,7 @@ public:
TypeExecutable
};
- DeployableFile();
+ DeployableFile() = default;
DeployableFile(const QString &m_localFilePath, const QString &m_remoteDir,
Type type = TypeNormal);
DeployableFile(const Utils::FileName &localFilePath, const QString &remoteDir,
@@ -59,7 +59,7 @@ public:
private:
Utils::FileName m_localFilePath;
QString m_remoteDir;
- Type m_type;
+ Type m_type = TypeNormal;
};