about summary refs log tree commit diff
path: root/src/librustc/metadata/common.rs
diff options
context:
space:
mode:
authorP1start <rewi-github@whanau.org>2014-09-13 13:55:37 +1200
committerP1start <rewi-github@whanau.org>2014-10-03 20:39:56 +1300
commit94bcd3539c761b4ecf423800bce21057c4e961fa (patch)
tree51c0030bfc0a527ce57da49f0987f726ea0ed912 /src/librustc/metadata/common.rs
parentaa034cd3bac3155e0f6c74c399314b5ee32f88fc (diff)
downloadrust-94bcd3539c761b4ecf423800bce21057c4e961fa.tar.gz
rust-94bcd3539c761b4ecf423800bce21057c4e961fa.zip
Set the `non_uppercase_statics` lint to warn by default
Diffstat (limited to 'src/librustc/metadata/common.rs')
-rw-r--r--src/librustc/metadata/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/metadata/common.rs b/src/librustc/metadata/common.rs
index 2a8aa791c61..ef88795762e 100644
--- a/src/librustc/metadata/common.rs
+++ b/src/librustc/metadata/common.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![allow(non_camel_case_types)]
+#![allow(non_camel_case_types, non_uppercase_statics)]
 
 use std::mem;
 use back::svh::Svh;