Max
Results
2
issues of
Max
The stack footprint of several functions can be improved by using `core::mem::transmute_copy` on rust versions starting at 1.83 (using e.g. the `rustversion` crate). For example, `const_transmute` can be changed to...
The error marker `(/*ERROR*/)` is parsed as a literal, rather than a parenthesized comment. To demonstrate, the following code: ```rust println!("{:#?}", proc_macro2::TokenStream::from_str("(/*ERROR*/)").unwrap()); ``` outputs `TokenStream [Literal { lit: (/*ERROR*/) }]`...