mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
Removed unnecessary set of parentheses and ran formatter (#290)
This commit is contained in:
committed by
Peter Johnson
parent
75463a249f
commit
5ca5583fc3
@@ -71,7 +71,7 @@ class InterruptThreadOwner : public wpi::SafeThreadOwner<InterruptThread> {
|
||||
} // namespace
|
||||
|
||||
static void threadedInterruptHandler(uint32_t mask, void* param) {
|
||||
(static_cast<InterruptThreadOwner*>(param))->Notify(mask);
|
||||
static_cast<InterruptThreadOwner*>(param)->Notify(mask);
|
||||
}
|
||||
|
||||
static LimitedHandleResource<HAL_InterruptHandle, Interrupt, kNumInterrupts,
|
||||
|
||||
Reference in New Issue
Block a user