Remove empty VisInherited type
diff --git a/src/data.rs b/src/data.rs
index 3a7c025..e872fb9 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -100,7 +100,7 @@
}),
/// Inherited, i.e. private.
- pub Inherited(VisInherited {}),
+ pub Inherited,
}
}
@@ -195,7 +195,7 @@
})
} }
|
- epsilon!() => { |_| Visibility::Inherited(VisInherited {}) }
+ epsilon!() => { |_| Visibility::Inherited }
));
}
}
@@ -273,8 +273,4 @@
});
}
}
-
- impl ToTokens for VisInherited {
- fn to_tokens(&self, _tokens: &mut Tokens) {}
- }
}