diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-04 16:03:01 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-04 16:03:01 (GMT) |
commit | a1ddf2d0ba6268e29a9456948828f59d044791f1 (patch) | |
tree | b7046d67c6667c945e3683cf890d725c7123e2bd /Source/cmVisualStudio10TargetGenerator.h | |
parent | ee15bc7d7e7707fd8d7db92645c2c56a5df0f681 (diff) | |
download | CMake-a1ddf2d0ba6268e29a9456948828f59d044791f1.zip CMake-a1ddf2d0ba6268e29a9456948828f59d044791f1.tar.gz CMake-a1ddf2d0ba6268e29a9456948828f59d044791f1.tar.bz2 |
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.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index 6607e77..4dd92eb 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -186,8 +186,8 @@ private: private: friend class cmVS10GeneratorOptions; - typedef cmVS10GeneratorOptions Options; - typedef std::map<std::string, std::unique_ptr<Options>> OptionsMap; + using Options = cmVS10GeneratorOptions; + using OptionsMap = std::map<std::string, std::unique_ptr<Options>>; OptionsMap ClOptions; OptionsMap RcOptions; OptionsMap CudaOptions; @@ -224,16 +224,16 @@ private: std::string DefaultArtifactDir; bool AddedDefaultCertificate = false; // managed C++/C# relevant members - typedef std::pair<std::string, std::string> DotNetHintReference; - typedef std::vector<DotNetHintReference> DotNetHintReferenceList; - typedef std::map<std::string, DotNetHintReferenceList> - DotNetHintReferenceMap; + using DotNetHintReference = std::pair<std::string, std::string>; + using DotNetHintReferenceList = std::vector<DotNetHintReference>; + using DotNetHintReferenceMap = + std::map<std::string, DotNetHintReferenceList>; DotNetHintReferenceMap DotNetHintReferences; - typedef std::set<std::string> UsingDirectories; - typedef std::map<std::string, UsingDirectories> UsingDirectoriesMap; + using UsingDirectories = std::set<std::string>; + using UsingDirectoriesMap = std::map<std::string, UsingDirectories>; UsingDirectoriesMap AdditionalUsingDirectories; - typedef std::map<std::string, ToolSources> ToolSourceMap; + using ToolSourceMap = std::map<std::string, ToolSources>; ToolSourceMap Tools; std::string GetCMakeFilePath(const char* name) const; }; |