From a232640df52b446cca5c1dada4cd5fcbd6982048 Mon Sep 17 00:00:00 2001 From: BlueAndi Date: Mon, 18 Sep 2023 21:04:15 +0200 Subject: [PATCH] Missing initialization of member variables fixed. --- lib/HALTest/Motors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/HALTest/Motors.h b/lib/HALTest/Motors.h index 20f6dd59..0bc5b070 100644 --- a/lib/HALTest/Motors.h +++ b/lib/HALTest/Motors.h @@ -61,7 +61,7 @@ class Motors : public IMotors, public IMotorsTest /** * Constructs the motors adapter. */ - Motors() : IMotors() + Motors() : IMotors(), m_speedLeft(0), m_speedRight(0) { }