Changed NonCamelCaseTypes lint to warn by default

Added allow(non_camel_case_types) to librustc where necesary

Tried to fix problems with non_camel_case_types outside rustc

fixed failing tests

Docs updated

Moved #[allow(non_camel_case_types)] a level higher.

markdown.rs reverted

Fixed timer that was failing tests

Fixed another timer
This commit is contained in:
mr.Shu 2014-02-10 15:36:31 +01:00
parent d70f909fa3
commit 70319f7b25
42 changed files with 122 additions and 68 deletions

View file

@ -10,6 +10,7 @@
#[no_std];
#[allow(unused_variable)];
#[allow(non_camel_case_types)];
#[deny(dead_code)];
#[crate_type="lib"];

View file

@ -9,6 +9,7 @@
// except according to those terms.
#[allow(unused_variable)];
#[allow(non_camel_case_types)];
#[deny(dead_code)];
#[crate_type="lib"];

View file

@ -9,6 +9,7 @@
// except according to those terms.
#[deny(unused_imports)];
#[allow(non_camel_case_types)];
#[allow(dead_code)];
// Regression test for issue #6633