fix message generation for WChar idl type

This commit is contained in:
Martin Dahl 2024-11-21 13:45:13 +01:00
parent 74ad4410c7
commit 94db799db2
1 changed files with 1 additions and 1 deletions

View File

@ -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 },