mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Replace C identifier lists with (void) (#809)
These changes were generated by wpilibsuite/styleguide#106.
This commit is contained in:
committed by
Peter Johnson
parent
59c4984ed6
commit
e9e407a87d
@@ -199,7 +199,9 @@ void HAL_ObserveUserProgramTest(void) {
|
||||
static pthread_key_t lastCountKey;
|
||||
static pthread_once_t lastCountKeyOnce = PTHREAD_ONCE_INIT;
|
||||
|
||||
static void InitLastCountKey() { pthread_key_create(&lastCountKey, std::free); }
|
||||
static void InitLastCountKey(void) {
|
||||
pthread_key_create(&lastCountKey, std::free);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool HAL_IsNewControlData(void) {
|
||||
|
||||
Reference in New Issue
Block a user