Codechange: Use TypedIndexContainer for typed index containers

Instead of ReferenceThroughBaseContainer
This commit is contained in:
Jonathan G Rennison
2025-06-08 20:46:58 +01:00
committed by Peter Nelson
parent d0e49a297f
commit 63f1c2aa3a
17 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ private:
LinkGraphJob &job; ///< Link graph job we're working with.
/** Lookup table for getting NodeIDs from StationIDs. */
ReferenceThroughBaseContainer<std::vector<NodeID>> station_to_node;
TypedIndexContainer<std::vector<NodeID>, StationID> station_to_node;
/** Current iterator in the shares map. */
FlowStat::SharesMap::const_iterator it;