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.
This commit is contained in:
Regina Pfeifer
2019-09-04 18:03:01 +02:00
parent ee15bc7d7e
commit a1ddf2d0ba
85 changed files with 177 additions and 182 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ public:
DataGroupCount
};
typedef std::bitset<DataGroupCount> DataGroupSet;
using DataGroupSet = std::bitset<DataGroupCount>;
static const DataGroupSet DataGroupProjects;
static const DataGroupSet DataGroupProjectDependencies;