Skip to content

Commit

Permalink
Partial fix for issue 1097.
Browse files Browse the repository at this point in the history
We no longer attempt to call a destructor with ptr->~namespace::Ident,
but there are other remaining problems with ambiguities between
rust::Str and the types declared in the test.
  • Loading branch information
adetaylor committed Sep 14, 2022
1 parent 2d86cdb commit bce713b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl QualifiedName {
pub(crate) fn get_final_cpp_item(&self) -> String {
let special_cpp_name = known_types().special_cpp_name(self);
match special_cpp_name {
Some(name) => name,
Some(name) => Self::new_from_cpp_name(&name).1,
None => self.1.to_string(),
}
}
Expand Down

0 comments on commit bce713b

Please sign in to comment.