rustc: Set the exceeding_bitshifts lint to Allow

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:
Alex Crichton 2014-11-03 14:34:14 -08:00
parent 01b81c0ebb
commit 768caf1083

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 {