Skip to content

Commit

Permalink
Merge pull request #1158 from google/issue-1097-partial-fix
Browse files Browse the repository at this point in the history
Partial fix for issue 1097.
  • Loading branch information
adetaylor authored Sep 25, 2022
2 parents 1ce2ee3 + bce713b commit b245636
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 b245636

Please sign in to comment.