Browse Source

Fix downcast name

tags/v0.3.6-rc0
Philipp Oppermann 1 year ago
parent
commit
7dbda333ce
Failed to extract signature
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libraries/extensions/ros2-bridge/msg-gen/src/types/action.rs

+ 1
- 1
libraries/extensions/ros2-bridge/msg-gen/src/types/action.rs View File

@@ -223,7 +223,7 @@ impl Action {

let matches = format_ident!("matches__{package_name}__{}", self.name);
let cxx_matches = format_ident!("matches");
let downcast = format_ident!("actiondowncast__{package_name}__{}", self.name);
let downcast = format_ident!("action_downcast__{package_name}__{}", self.name);
let cxx_downcast = format_ident!("downcast");

let goal_type_raw = format_ident!("{package_name}__{}_Goal", self.name);


Loading…
Cancel
Save