mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[wpilibc] Return reference from GetInstance (#3247)
Improves consistency across all classes. Affects Preferences, LiveWindow, and CameraServer. Old commands Scheduler::GetInstance() was not updated as this is already deprecated.
This commit is contained in:
@@ -21,7 +21,7 @@ void Robot::Teleop() {}
|
||||
void Robot::Test() {}
|
||||
|
||||
void Robot::StartCompetition() {
|
||||
auto& lw = *frc::LiveWindow::GetInstance();
|
||||
auto& lw = frc::LiveWindow::GetInstance();
|
||||
|
||||
RobotInit();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user