mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Change uint to int for channels on constructors which can take a single channel or single pointer to avoid ambiguous calls.
Change-Id: Id56f611675bf4dee8d31e152c4ee30112d07aac4
This commit is contained in:
@@ -31,7 +31,7 @@ void AnalogTrigger::InitTrigger(uint32_t channel)
|
||||
*
|
||||
* @param channel The analog channel (0..7).
|
||||
*/
|
||||
AnalogTrigger::AnalogTrigger(uint32_t channel)
|
||||
AnalogTrigger::AnalogTrigger(int32_t channel)
|
||||
{
|
||||
InitTrigger(channel);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user