mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +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,
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user