mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[hal] Remove useless usage reporting return (#8625)
The value is not used anywhere and it also just returns 0 (was a value from Netcomm in pre-2027).
This commit is contained in:
@@ -445,9 +445,9 @@ void HALSIM_CancelAllSimPeriodicCallbacks(void) {
|
||||
gSimPeriodicAfter.Reset();
|
||||
}
|
||||
|
||||
int32_t HAL_ReportUsage(const struct WPI_String* resource,
|
||||
const struct WPI_String* data) {
|
||||
return 0; // Do nothing for now
|
||||
void HAL_ReportUsage(const struct WPI_String* resource,
|
||||
const struct WPI_String* data) {
|
||||
// Do nothing for now
|
||||
}
|
||||
|
||||
} // extern "C"
|
||||
|
||||
Reference in New Issue
Block a user