diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-19 07:40:22 +0530 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-03-21 10:27:32 +0100 |
commit | 3479d3fa7fbbfbcdbc92a93896b4a347338fe103 (patch) | |
tree | d05bd5d1964dfad791132d2384950cc681597f6e /components/layout/flow_ref.rs | |
parent | 4eb26065acdc37d275e658d8581282cb39b90686 (diff) | |
download | servo-3479d3fa7fbbfbcdbc92a93896b4a347338fe103.tar.gz servo-3479d3fa7fbbfbcdbc92a93896b4a347338fe103.zip |
Replace unsafe_blocks by unsafe_code.
Diffstat (limited to 'components/layout/flow_ref.rs')
-rw-r--r-- | components/layout/flow_ref.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/flow_ref.rs b/components/layout/flow_ref.rs index 19bce56e391..9a8e2bb580e 100644 --- a/components/layout/flow_ref.rs +++ b/components/layout/flow_ref.rs @@ -8,7 +8,7 @@ //! be superfluous. This design is largely duplicating logic of Arc<T> and //! Weak<T>; please see comments there for details. -#![allow(unsafe_blocks)] +#![allow(unsafe_code)] use flow::Flow; use flow; |