@@ -84,28 +84,28 @@ namespace MAT_NS_BEGIN
8484 // / TransmitProfileRule constructor taking a collection of timers.
8585 // / </summary>
8686 // / <param name="timers">A vector of integers that contain per-priority transmission timers.</param>
87- TransmitProfileRule (std::vector<int >&& timers )
88- : timers(std::move(timers )) { }
87+ TransmitProfileRule (std::vector<int >&& timers_ )
88+ : timers(std::move(timers_ )) { }
8989
9090 // / <summary>
9191 // / TransmitProfileRule constructor taking a NetworkCost and a collection of timers.
9292 // / </summary>
9393 // / <param name="networkCost">The network cost, as one of the MAT::NetworkCost enumeration values.</param>
9494 // / <param name="timers">A vector of integers that contain per-priority transmission timers.</param>
95- TransmitProfileRule (NetworkCost networkCost, std::vector<int >&& timers )
95+ TransmitProfileRule (NetworkCost networkCost, std::vector<int >&& timers_ )
9696 : netCost(networkCost)
97- , timers(std::move(timers )) { }
97+ , timers(std::move(timers_ )) { }
9898
9999 // / <summary>
100100 // / TransmitProfileRule constructor taking a NetworkCost, PowerSource, and a collection of timers.
101101 // / </summary>
102102 // / <param name="networkCost">The network cost, as one of the MAT::NetworkCost enumeration values.</param>
103103 // / <param name="powerSource">The power state, as one of the MAT::PowerSource enumeration values.</param>
104104 // / <param name="timers">A vector of integers that contain per-priority transmission timers.</param>
105- TransmitProfileRule (NetworkCost networkCost, PowerSource powerSource, std::vector<int >&& timers )
105+ TransmitProfileRule (NetworkCost networkCost, PowerSource powerSource, std::vector<int >&& timers_ )
106106 : netCost(networkCost)
107107 , powerState(powerSource)
108- , timers(std::move(timers )) { }
108+ , timers(std::move(timers_ )) { }
109109
110110 } TransmitProfileRule;
111111
0 commit comments