@@ -84,28 +84,28 @@ namespace MAT_NS_BEGIN
84
84
// / TransmitProfileRule constructor taking a collection of timers.
85
85
// / </summary>
86
86
// / <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_ )) { }
89
89
90
90
// / <summary>
91
91
// / TransmitProfileRule constructor taking a NetworkCost and a collection of timers.
92
92
// / </summary>
93
93
// / <param name="networkCost">The network cost, as one of the MAT::NetworkCost enumeration values.</param>
94
94
// / <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_ )
96
96
: netCost(networkCost)
97
- , timers(std::move(timers )) { }
97
+ , timers(std::move(timers_ )) { }
98
98
99
99
// / <summary>
100
100
// / TransmitProfileRule constructor taking a NetworkCost, PowerSource, and a collection of timers.
101
101
// / </summary>
102
102
// / <param name="networkCost">The network cost, as one of the MAT::NetworkCost enumeration values.</param>
103
103
// / <param name="powerSource">The power state, as one of the MAT::PowerSource enumeration values.</param>
104
104
// / <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_ )
106
106
: netCost(networkCost)
107
107
, powerState(powerSource)
108
- , timers(std::move(timers )) { }
108
+ , timers(std::move(timers_ )) { }
109
109
110
110
} TransmitProfileRule;
111
111
0 commit comments