diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-09 07:15:52 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-09 07:15:52 -0700 |
commit | f74d5360ba30ec7aaa12f675eb267fd11053d8a8 (patch) | |
tree | d94e48c808c752a66809f3c1cf504ce89e8a6592 /components/script/lib.rs | |
parent | c338dbe947660c1647fa8c2eb4f2f57b0c4fadc3 (diff) | |
parent | edc1d892517e90d95b566c17acc7a3df63e24790 (diff) | |
download | servo-f74d5360ba30ec7aaa12f675eb267fd11053d8a8.tar.gz servo-f74d5360ba30ec7aaa12f675eb267fd11053d8a8.zip |
auto merge of #4584 : Ms2ger/servo/unsafe, r=jdm
As a first start, this allows them indiscriminately where used.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 33610bb1b6b..bd4b19745a4 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -4,6 +4,7 @@ #![feature(default_type_params, globs, macro_rules, phase, unsafe_destructor)] +#![deny(unsafe_blocks)] #![deny(unused_imports)] #![deny(unused_variables)] #![allow(non_snake_case)] @@ -51,6 +52,7 @@ pub mod dom { pub mod macros; /// The code to expose the DOM to JavaScript through IDL bindings. + #[allow(unsafe_blocks)] pub mod bindings { pub mod cell; pub mod global; |