diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-04 18:07:16 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-04 18:07:16 +0200 |
commit | 1c65ce8f369b718396f4d841db67d9c81a4cf217 (patch) | |
tree | b7dbd8b00e04eb2a4867683f1851ef66c23f93c7 /components/util/lib.rs | |
parent | a8c1cb39713697c12831b38985f1e5a9c576c37c (diff) | |
download | servo-1c65ce8f369b718396f4d841db67d9c81a4cf217.tar.gz servo-1c65ce8f369b718396f4d841db67d9c81a4cf217.zip |
Deny unsafe code in some more modules.
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 9407b18a87b..7b7ad32811c 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -54,10 +54,8 @@ pub mod linked_list; #[allow(unsafe_code)] pub mod opts; pub mod panicking; -#[allow(unsafe_code)] pub mod prefs; pub mod print_tree; -#[allow(unsafe_code)] pub mod resource_files; #[allow(unsafe_code)] pub mod str; |