@@ -512,7 +512,7 @@ class Server : public ServerBase, public std::enable_shared_from_this<Server<Act
512512
513513 auto ipm = lock_intra_process_manager ();
514514
515- ipm->intra_process_action_send_goal_response <ActionT>(
515+ ipm->template intra_process_action_send_goal_response <ActionT>(
516516 intra_process_action_client_id,
517517 std::move (goal_response),
518518 std::hash<GoalUUID>()(uuid));
@@ -576,7 +576,7 @@ class Server : public ServerBase, public std::enable_shared_from_this<Server<Act
576576
577577 GoalUUID uuid = request->goal_info .goal_id .uuid ;
578578
579- ipm->intra_process_action_send_cancel_response <ActionT>(
579+ ipm->template intra_process_action_send_cancel_response <ActionT>(
580580 intra_process_action_client_id,
581581 std::move (response),
582582 std::hash<GoalUUID>()(uuid));
@@ -615,7 +615,7 @@ class Server : public ServerBase, public std::enable_shared_from_this<Server<Act
615615 // Send the result now
616616 auto ipm = lock_intra_process_manager ();
617617
618- ipm->intra_process_action_send_result_response <ActionT>(
618+ ipm->template intra_process_action_send_result_response <ActionT>(
619619 intra_process_action_client_id,
620620 std::move (result_response),
621621 hashed_uuid);
0 commit comments