Removed unnecessary set of parentheses and ran formatter (#290)

This commit is contained in:
Tyler Veness
2016-10-23 16:34:00 -07:00
committed by Peter Johnson
parent 75463a249f
commit 5ca5583fc3
2 changed files with 4 additions and 3 deletions

View File

@@ -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,