We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68c3ee7 commit a799531Copy full SHA for a799531
bindgen/ir/item.rs
@@ -787,7 +787,7 @@ impl Item {
787
788
match *self.kind() {
789
ItemKind::Var(ref var) => var.name().to_owned(),
790
- ItemKind::MacroDef(ref var) => var.name().to_owned(),
+ ItemKind::MacroDef(ref macro_def) => macro_def.name().to_owned(),
791
ItemKind::Module(ref module) => {
792
module.name().map(ToOwned::to_owned).unwrap_or_else(|| {
793
format!("_bindgen_mod_{}", self.exposed_id(ctx))
0 commit comments