Skip to content

Commit ca38d11

Browse files
committed
Enable InterfaceState's copy operator
1 parent b2c990b commit ca38d11

File tree

1 file changed

+1
-0
lines changed
  • core/include/moveit/task_constructor

1 file changed

+1
-0
lines changed

core/include/moveit/task_constructor/storage.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ class InterfaceState
129129
/// copy an existing InterfaceState, but not including incoming/outgoing trajectories
130130
InterfaceState(const InterfaceState& other);
131131
InterfaceState(InterfaceState&& other) = default;
132+
InterfaceState& operator=(const InterfaceState& other) = default;
132133

133134
inline const planning_scene::PlanningSceneConstPtr& scene() const { return scene_; }
134135
inline const Solutions& incomingTrajectories() const { return incoming_trajectories_; }

0 commit comments

Comments
 (0)