mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Replace typedefs in C++ with using declarations (#1339)
These are more readable than typedefs. C headers were left alone.
This commit is contained in:
committed by
Peter Johnson
parent
26c33a9a56
commit
8b1274d744
@@ -14,7 +14,7 @@
|
||||
|
||||
namespace frc {
|
||||
|
||||
typedef void (*TimerInterruptHandler)(void* param);
|
||||
using TimerInterruptHandler = void (*)(void* param);
|
||||
|
||||
/**
|
||||
* Pause the task for a specified time.
|
||||
|
||||
Reference in New Issue
Block a user