From 4a55d830e4272d5d1bb0416b2920402b2d36063e Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Sat, 13 Jan 2024 14:09:26 -0800 Subject: [PATCH] [wpilibcExamples] Remove redundant initializer (#6212) --- .../src/main/cpp/examples/SysId/include/SysIdRoutineBot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpilibcExamples/src/main/cpp/examples/SysId/include/SysIdRoutineBot.h b/wpilibcExamples/src/main/cpp/examples/SysId/include/SysIdRoutineBot.h index 51b4f8890a..31110fc57a 100644 --- a/wpilibcExamples/src/main/cpp/examples/SysId/include/SysIdRoutineBot.h +++ b/wpilibcExamples/src/main/cpp/examples/SysId/include/SysIdRoutineBot.h @@ -20,5 +20,5 @@ class SysIdRoutineBot { void ConfigureBindings(); frc2::CommandXboxController m_driverController{ constants::oi::kDriverControllerPort}; - Drive m_drive{}; + Drive m_drive; };