diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-02-13 11:08:31 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-02-13 11:08:31 +0100 |
commit | 2ca59b3f5b0775488bae33506c1c618a6210e4be (patch) | |
tree | eaf9e3647a5d5558ee245ec99f9a95a4e20c68bb /components/msg/lib.rs | |
parent | 58180fa4f7166c52b21403ea61c6556604ff2a17 (diff) | |
download | servo-2ca59b3f5b0775488bae33506c1c618a6210e4be.tar.gz servo-2ca59b3f5b0775488bae33506c1c618a6210e4be.zip |
Fix warnings in msg.
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 869b095a882..3fed347b085 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -2,10 +2,11 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![feature(hash)] #![feature(int_uint)] +#![feature(rustc_private)] #![allow(missing_copy_implementations)] -#![allow(unstable)] extern crate azure; #[macro_use] extern crate bitflags; |