1
Fork 0

auto merge of #18589 : alexcrichton/rust/issue-18587-warn, r=jakub-

There's currently a bug in it which fires erroneously on cross compiles,
preventing new nightlies from being generated. This can be reset back to Deny
once it's been fixed.

cc #18587
This commit is contained in:
bors 2014-11-03 23:16:55 +00:00
commit 0a5e7f3594

View file

@ -116,7 +116,7 @@ declare_lint!(UNUSED_COMPARISONS, Warn,
declare_lint!(OVERFLOWING_LITERALS, Warn,
"literal out of range for its type")
declare_lint!(EXCEEDING_BITSHIFTS, Deny,
declare_lint!(EXCEEDING_BITSHIFTS, Allow,
"shift exceeds the type's number of bits")
pub struct TypeLimits {