-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forbidding non uppercase statics causes build to fail #13
Comments
This is really strange. It looks like an issue in Rust compiler or std library. As far as I understand, this means that I guess it's ok to remove the forbid as a temporary measure. Feel free to submit your commit as a PR :) |
Weird! I'll submit the PR. Just a quick fix whilst the bug is fixed in rust hopefully! |
Remove forbid non_uppercase_statics. Fixes #13
FYI: This was fixed in rustc if you'd like to put the |
With rustc version 0.12.0-nightly (136ab3c6b 2014-10-04 00:17:04 +0000) rust-xml will no longer build. It gives this error:
It appears that the
![forbid(non_uppercase_statics)]
in src/lib.rs conflicts with a#[allow(non_uppercase_statics)]
in thebitflags!
macro. Removing the forbid from src/lib.rs fixes it but I don't know if that's something you actually want to do.The text was updated successfully, but these errors were encountered: