mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
clang-tidy: Replace typedef with using
This commit is contained in:
committed by
Brad King
parent
711e1c3ada
commit
62e5f72289
@@ -24,9 +24,9 @@ class cmComputeComponentGraph
|
||||
{
|
||||
public:
|
||||
// Represent the graph with an adjacency list.
|
||||
typedef cmGraphNodeList NodeList;
|
||||
typedef cmGraphEdgeList EdgeList;
|
||||
typedef cmGraphAdjacencyList Graph;
|
||||
using NodeList = cmGraphNodeList;
|
||||
using EdgeList = cmGraphEdgeList;
|
||||
using Graph = cmGraphAdjacencyList;
|
||||
|
||||
cmComputeComponentGraph(Graph const& input);
|
||||
~cmComputeComponentGraph();
|
||||
|
||||
Reference in New Issue
Block a user