Internals: Standardize template argument names. No functional change.

This commit is contained in:
Wilson Snyder
2024-11-29 20:20:38 -05:00
parent 990ccd6763
commit 0c820c3068
28 changed files with 524 additions and 521 deletions
+2 -2
View File
@@ -53,9 +53,9 @@ struct GraphPCNode final {
//######################################################################
// GraphPathChecker implementation
template <GraphWay::en T_Way>
template <GraphWay::en N_Way>
void GraphPathChecker::initHalfCriticalPaths(bool checkOnly) {
constexpr GraphWay way{T_Way};
constexpr GraphWay way{N_Way};
constexpr GraphWay rev = way.invert();
GraphStreamUnordered order(m_graphp, way);
while (const V3GraphVertex* const vertexp = order.nextp()) {