mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
clang-tidy: Replace typedef with using
This commit is contained in:
committed by
Brad King
parent
711e1c3ada
commit
62e5f72289
@@ -108,7 +108,7 @@ public:
|
||||
|
||||
//! how we identify a library, by name and type
|
||||
typedef std::pair<std::string, cmTargetLinkLibraryType> LibraryID;
|
||||
typedef std::vector<LibraryID> LinkLibraryVectorType;
|
||||
using LinkLibraryVectorType = std::vector<LibraryID>;
|
||||
LinkLibraryVectorType const& GetOriginalLinkLibraries() const;
|
||||
|
||||
//! Clear the dependency information recorded for this target, if any.
|
||||
|
||||
Reference in New Issue
Block a user