File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
hardware_interface/include/hardware_interface Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ class ActuatorInterface : public rclcpp_lifecycle::node_interfaces::LifecycleNod
9494 */
9595 ActuatorInterface (const ActuatorInterface & other) = delete;
9696
97- ActuatorInterface (ActuatorInterface && other) = default ;
97+ ActuatorInterface (ActuatorInterface && other) = delete ;
9898
9999 virtual ~ActuatorInterface () = default ;
100100
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class SensorInterface : public rclcpp_lifecycle::node_interfaces::LifecycleNodeI
9393 */
9494 SensorInterface (const SensorInterface & other) = delete;
9595
96- SensorInterface (SensorInterface && other) = default ;
96+ SensorInterface (SensorInterface && other) = delete ;
9797
9898 virtual ~SensorInterface () = default ;
9999
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ class SystemInterface : public rclcpp_lifecycle::node_interfaces::LifecycleNodeI
9797 */
9898 SystemInterface (const SystemInterface & other) = delete;
9999
100- SystemInterface (SystemInterface && other) = default ;
100+ SystemInterface (SystemInterface && other) = delete ;
101101
102102 virtual ~SystemInterface () = default ;
103103
You can’t perform that action at this time.
0 commit comments