[build] Upgrade clang-format and clang-tidy (NFC) (#3422)

This commit is contained in:
Tyler Veness
2021-06-10 11:13:09 -07:00
committed by GitHub
parent 099fde97d5
commit a77c6ff3a2
29 changed files with 66 additions and 48 deletions

View File

@@ -24,7 +24,7 @@
#include "frc/livewindow/LiveWindow.h"
#include "frc/smartdashboard/SmartDashboard.h"
typedef void (*SetCameraServerSharedFP)(frc::CameraServerShared* shared);
using SetCameraServerSharedFP = void (*)(frc::CameraServerShared*);
using namespace frc;

View File

@@ -14,8 +14,8 @@
namespace cs {
class VideoSource;
} // namespace cs
typedef int CS_Handle;
typedef CS_Handle CS_Source;
using CS_Handle = int; // NOLINT
using CS_Source = CS_Handle; // NOLINT
#endif
#include "frc/smartdashboard/Sendable.h"