From 5ca5583fc3519191e378aa8108bd530f9a04f77d Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Sun, 23 Oct 2016 16:34:00 -0700 Subject: [PATCH] Removed unnecessary set of parentheses and ran formatter (#290) --- hal/lib/athena/Interrupts.cpp | 2 +- wpilibc/shared/include/WPILibVersion.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/hal/lib/athena/Interrupts.cpp b/hal/lib/athena/Interrupts.cpp index 7481601024..e42b30b01f 100644 --- a/hal/lib/athena/Interrupts.cpp +++ b/hal/lib/athena/Interrupts.cpp @@ -71,7 +71,7 @@ class InterruptThreadOwner : public wpi::SafeThreadOwner { } // namespace static void threadedInterruptHandler(uint32_t mask, void* param) { - (static_cast(param))->Notify(mask); + static_cast(param)->Notify(mask); } static LimitedHandleResource