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
94bcd35 added #[allow(non_uppercase_statics)] into the bitflags! generated code. It means using bitflags! from within a module that has #![forbid(non_uppercase_statics)] no longer works.
I don't think the generated statics should have allow added to them in this blanket fashion. Shouldn't it be up to the person calling the macro to allow if they need to for their particular case?
See: rust-xml/issues/13 - Forbidding non uppercase statics causes build to fail
The text was updated successfully, but these errors were encountered:
94bcd35 added
#[allow(non_uppercase_statics)]
into thebitflags!
generated code. It means usingbitflags!
from within a module that has#![forbid(non_uppercase_statics)]
no longer works.I don't think the generated statics should have
allow
added to them in this blanket fashion. Shouldn't it be up to the person calling the macro toallow
if they need to for their particular case?See: rust-xml/issues/13 - Forbidding non uppercase statics causes build to fail
The text was updated successfully, but these errors were encountered: