diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2015-01-08 21:45:49 +1100 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2015-01-08 11:02:23 -0500 |
| commit | 4f5a57e80ef6c029278f1e8ef59e13dcea9b255b (patch) | |
| tree | 6d89ac255b41af6a2444fdee30a909c553cc0c82 /src/liblibc | |
| parent | d12514bc589c1955108d517acd6d5952929b1650 (diff) | |
| download | rust-4f5a57e80ef6c029278f1e8ef59e13dcea9b255b.tar.gz rust-4f5a57e80ef6c029278f1e8ef59e13dcea9b255b.zip | |
Remove warning from the libraries.
This adds the int_uint feature to *every* library, whether or not it needs it.
Diffstat (limited to 'src/liblibc')
| -rw-r--r-- | src/liblibc/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index c39fd074387..dfa7f5cc754 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -12,6 +12,7 @@ #![crate_type = "rlib"] #![cfg_attr(not(feature = "cargo-build"), experimental)] #![cfg_attr(not(feature = "cargo-build"), staged_api)] +#![allow(unknown_features)] #![feature(int_uint)] #![no_std] #