From a71c699e521de901e8feb1126e9042574e3ce7f2 Mon Sep 17 00:00:00 2001 From: Thibault Poignonec Date: Fri, 20 Dec 2024 12:09:17 +0100 Subject: [PATCH] make CI happy --- .../include/semantic_components/led_rgb_device.hpp | 8 ++++---- controller_interface/test/test_led_rgb_device.hpp | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/controller_interface/include/semantic_components/led_rgb_device.hpp b/controller_interface/include/semantic_components/led_rgb_device.hpp index be8a78dccb..3b8bc4387a 100644 --- a/controller_interface/include/semantic_components/led_rgb_device.hpp +++ b/controller_interface/include/semantic_components/led_rgb_device.hpp @@ -24,14 +24,14 @@ namespace semantic_components { -class LedRgbDevice : public SemanticComponentCommandInterface +class LedRgbDevice : public SemanticComponentCommandInterface { public: /** * Constructor for a LED RGB device with interface names set based on device name. * The constructor sets the command interface names to "/r", "/g", "/b". */ - explicit LedRgbDevice (const std::string & name) : SemanticComponentCommandInterface(name, 3) + explicit LedRgbDevice(const std::string & name) : SemanticComponentCommandInterface(name, 3) { interface_names_.emplace_back(name_ + "/" + "r"); interface_names_.emplace_back(name_ + "/" + "g"); @@ -42,7 +42,7 @@ class LedRgbDevice : public SemanticComponentCommandInterface