Internals: Favor member assignment initialization. No functional change intended.

This commit is contained in:
Wilson Snyder
2022-01-01 11:46:49 -05:00
parent ca42be982c
commit 24a0d2a0c9
25 changed files with 96 additions and 129 deletions
+2 -2
View File
@@ -31,7 +31,7 @@
class GraphAcycVertex final : public V3GraphVertex {
// user() is used for various sub-algorithm pieces
V3GraphVertex* m_origVertexp; // Pointer to first vertex this represents
V3GraphVertex* const m_origVertexp; // Pointer to first vertex this represents
protected:
friend class GraphAcyc;
V3ListEnt<GraphAcycVertex*> m_work; // List of vertices with optimization work left
@@ -98,7 +98,7 @@ private:
// GraphEdge::user() OrigEdgeList* Old graph edges
// GraphVertex::user bool Detection of loops in simplifyDupIterate
// MEMBERS
V3Graph* m_origGraphp; // Original graph
V3Graph* const m_origGraphp; // Original graph
V3Graph m_breakGraph; // Graph with only breakable edges represented
V3List<GraphAcycVertex*> m_work; // List of vertices with optimization work left
std::vector<OrigEdgeList*> m_origEdgeDelp; // List of deletions to do when done