Skip to content

Commit

Permalink
Missing initialization of member variables fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueAndi committed Sep 18, 2023
1 parent c2a4885 commit a232640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/HALTest/Motors.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Motors : public IMotors, public IMotorsTest
/**
* Constructs the motors adapter.
*/
Motors() : IMotors()
Motors() : IMotors(), m_speedLeft(0), m_speedRight(0)
{
}

Expand Down

0 comments on commit a232640

Please sign in to comment.