Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bmagyar committed Sep 25, 2024
1 parent 334a6c4 commit 9024adc
Showing 1 changed file with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ class DummyActuatorDefault : public hardware_interface::ActuatorInterface
std::string get_name() const override { return "DummyActuatorDefault"; }

std::vector<hardware_interface::InterfaceDescription>
export_unlisted_state_interface_descriptions()
override
export_unlisted_state_interface_descriptions() override
{
std::vector<hardware_interface::InterfaceDescription> interfaces;
hardware_interface::InterfaceInfo info;
Expand All @@ -69,8 +68,7 @@ class DummyActuatorDefault : public hardware_interface::ActuatorInterface
}

std::vector<hardware_interface::InterfaceDescription>
export_unlisted_command_interface_descriptions()
override
export_unlisted_command_interface_descriptions() override
{
std::vector<hardware_interface::InterfaceDescription> interfaces;
hardware_interface::InterfaceInfo info;
Expand Down Expand Up @@ -99,8 +97,7 @@ class DummySensorDefault : public hardware_interface::SensorInterface
std::string get_name() const override { return "DummySensorDefault"; }

std::vector<hardware_interface::InterfaceDescription>
export_unlisted_state_interface_descriptions()
override
export_unlisted_state_interface_descriptions() override
{
std::vector<hardware_interface::InterfaceDescription> interfaces;
hardware_interface::InterfaceInfo info;
Expand All @@ -123,8 +120,7 @@ class DummySystemDefault : public hardware_interface::SystemInterface
std::string get_name() const override { return "DummySystemDefault"; }

std::vector<hardware_interface::InterfaceDescription>
export_unlisted_state_interface_descriptions()
override
export_unlisted_state_interface_descriptions() override
{
std::vector<hardware_interface::InterfaceDescription> interfaces;
hardware_interface::InterfaceInfo info;
Expand All @@ -136,8 +132,7 @@ class DummySystemDefault : public hardware_interface::SystemInterface
}

std::vector<hardware_interface::InterfaceDescription>
export_unlisted_command_interface_descriptions()
override
export_unlisted_command_interface_descriptions() override
{
std::vector<hardware_interface::InterfaceDescription> interfaces;
hardware_interface::InterfaceInfo info;
Expand Down

0 comments on commit 9024adc

Please sign in to comment.