Skip to content

Commit

Permalink
fix action types
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Nov 21, 2018
1 parent e920fee commit 8958bed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosidl_generator_cpp/resource/action__struct.hpp.em
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ struct @(action.structure_type.name)
using GoalRequestService = @(action_name)@(ACTION_WRAPPER_TYPE_SUFFIX)@(ACTION_GOAL_SERVICE_SUFFIX);
using GoalResultService = @(action_name)@(ACTION_WRAPPER_TYPE_SUFFIX)@(ACTION_RESULT_SERVICE_SUFFIX);

using Goal = @(action_name)@(ACTION_GOAL_SERVICE_SUFFIX);
using Result = @(action_name)@(ACTION_RESULT_SERVICE_SUFFIX);
using Goal = @(action_name)@(ACTION_GOAL_SERVICE_SUFFIX)@(SERVICE_REQUEST_MESSAGE_SUFFIX);
using Result = @(action_name)@(ACTION_RESULT_SERVICE_SUFFIX)@(SERVICE_RESPONSE_MESSAGE_SUFFIX);
using Feedback = @(action_name)@(ACTION_FEEDBACK_MESSAGE_SUFFIX);
};

Expand Down

0 comments on commit 8958bed

Please sign in to comment.