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,

View File

@@ -4,10 +4,11 @@
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#pragma once
/*
* The corresponding WPILibVersion.cpp file is autogenerated by the build system. If it does not exist, make sure that you
* run a build.
* The corresponding WPILibVersion.cpp file is autogenerated by the build
* system. If it does not exist, make sure that you run a build.
*/
extern const char* WPILibVersion;