aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmaketool.h
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2018-11-04 23:09:41 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2018-11-25 07:50:15 +0000
commit17f169c291b245bec28fac18a84cff22a59452c2 (patch)
treee542745ad33c7b52d61098aa4f7a0b05420b1179 /src/plugins/cmakeprojectmanager/cmaketool.h
parent58736127677d3941ec2ec020d6c99012c5d9b309 (diff)
CMakeProjectManager: Modernize
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using Change-Id: I6a272bc3b75835840b3d6cbe83be6f50f94bbedb Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmaketool.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmaketool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmaketool.h b/src/plugins/cmakeprojectmanager/cmaketool.h
index c36511dbd4..052722d89f 100644
--- a/src/plugins/cmakeprojectmanager/cmaketool.h
+++ b/src/plugins/cmakeprojectmanager/cmaketool.h
@@ -76,7 +76,7 @@ public:
bool matches(const QString &n, const QString &ex) const;
};
- typedef std::function<Utils::FileName (const Utils::FileName &)> PathMapper;
+ using PathMapper = std::function<Utils::FileName (const Utils::FileName &)>;
explicit CMakeTool(Detection d, const Core::Id &id);
explicit CMakeTool(const QVariantMap &map, bool fromSdk);