From a1ddf2d0ba6268e29a9456948828f59d044791f1 Mon Sep 17 00:00:00 2001 From: Regina Pfeifer Date: Wed, 4 Sep 2019 18:03:01 +0200 Subject: clang-tidy: Replace typedef with using Automate the conversion with perl -i -0pe 's/typedef ([^;]*) ([^ ]+);/using $2 = $1;/g' then manually fix a few places. --- Source/cmInstalledFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/cmInstalledFile.h') diff --git a/Source/cmInstalledFile.h b/Source/cmInstalledFile.h index e00e6660d4..ee809ee790 100644 --- a/Source/cmInstalledFile.h +++ b/Source/cmInstalledFile.h @@ -37,7 +37,7 @@ public: ExpressionVectorType ValueExpressions; }; - typedef std::map PropertyMapType; + using PropertyMapType = std::map; cmInstalledFile(); -- cgit v1.2.1