Skip to content

Commit

Permalink
Clippy fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
adetaylor committed Feb 10, 2025
1 parent 067ed2d commit 52a8430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/conversion/parse/bindgen_semantic_attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl CppOriginalName {
&self,
cxxbridge_name: &crate::minisyn::Ident,
) -> bool {
cxxbridge_name.0.to_string() != self.0
cxxbridge_name.0 != self.0
}

pub(crate) fn generate_cxxbridge_name_attribute(&self) -> proc_macro2::TokenStream {
Expand Down

0 comments on commit 52a8430

Please sign in to comment.