Skip to content

Commit

Permalink
fix message generation for WChar idl type
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dahl committed Nov 21, 2024
1 parent 74ad441 commit 94db799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2r_msg_gen/src/introspection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ impl MemberType {
MemberType::F32 => quote! { f32 },
MemberType::F64 => quote! { f64 },
MemberType::Char => quote! { std::ffi::c_char },
MemberType::WChar => quote! { widestring::WideChar },
MemberType::WChar => quote! { u16 },
MemberType::String => quote! { std::string::String },
MemberType::WString => quote! { std::string::String },
MemberType::Message => quote! { message },
Expand Down

0 comments on commit 94db799

Please sign in to comment.