You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LitByteStr::new(&[65, 0], ...) quotes as b"a\0", which triggers this default clippy lint. Whether that lint should be default is a different question, but it'd be nice if syn output would be clippy clean. This would mean representing 0u8 by \x00 instead of \0.
The text was updated successfully, but these errors were encountered:
Not sure whether to file this here or in
quote
.LitByteStr::new(&[65, 0], ...)
quotes asb"a\0"
, which triggers this default clippy lint. Whether that lint should be default is a different question, but it'd be nice if syn output would be clippy clean. This would mean representing0u8
by\x00
instead of\0
.The text was updated successfully, but these errors were encountered: