blob: 368e5a0fbd62f24c21f01c5967386ef5856088d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// Doc Not Optimize
use proc_macro::TokenStream;
/// Marker attribute for the Mingling lint system.
/// All it does is pass the item through unchanged.
pub(crate) fn mlint(_attr: TokenStream, item: TokenStream) -> TokenStream {
item
}
|