From ea8b416e91f63bb46e2650fce0921a520a6e8aba Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 9 Jul 2018 21:32:10 -0400 Subject: [PATCH] Internals: Rename recent template. No functional change. --- src/V3GraphAlg.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/V3GraphAlg.h b/src/V3GraphAlg.h index 63dc84516..fdc3bd09c 100644 --- a/src/V3GraphAlg.h +++ b/src/V3GraphAlg.h @@ -30,13 +30,13 @@ // Algorithms - common class // For internal use, most graph algorithms use this as a base class -template // Or sometimes const V3Graph +template // Or sometimes const V3Graph class GraphAlg { protected: - T* m_graphp; // Graph we're operating upon + T_Graph* m_graphp; // Graph we're operating upon V3EdgeFuncP m_edgeFuncp; // Function that says we follow this edge // CONSTRUCTORS - GraphAlg(T* graphp, V3EdgeFuncP edgeFuncp) + GraphAlg(T_Graph* graphp, V3EdgeFuncP edgeFuncp) : m_graphp(graphp), m_edgeFuncp(edgeFuncp) {} ~GraphAlg() {} // METHODS