diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-01-08 01:03:46 +0100 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-01-08 01:03:46 +0100 |
| commit | 772cfe9da5966c837da39edde315bcef032591ce (patch) | |
| tree | 112e9e5448a6eb26324f86317ec91fd419b09a63 | |
| parent | 3010e10d1d72baa166dffbc58b02c40c2470003d (diff) | |
| download | rust-772cfe9da5966c837da39edde315bcef032591ce.tar.gz rust-772cfe9da5966c837da39edde315bcef032591ce.zip | |
allow box_syntax and unknown features in the rustc_llvm crate.
| -rw-r--r-- | src/librustc_llvm/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_llvm/lib.rs b/src/librustc_llvm/lib.rs index 0bed754aa3c..480c6d88cbc 100644 --- a/src/librustc_llvm/lib.rs +++ b/src/librustc_llvm/lib.rs @@ -21,7 +21,9 @@ html_favicon_url = "http://www.rust-lang.org/favicon.ico", html_root_url = "http://doc.rust-lang.org/nightly/")] +#![allow(unknown_features)] #![feature(link_args)] +#![feature(box_syntax)] extern crate libc; |
