diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2016-04-14 20:19:01 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-04-15 01:52:33 +0530 |
commit | f02fd6330fb0f802f96a346f8bede889afd327f1 (patch) | |
tree | dbb0b4868e7860f2c104cf67817ca260efaa26f5 /components/util/lib.rs | |
parent | d9ffefe5620eca8d377ccdca81041328bcd48065 (diff) | |
download | servo-f02fd6330fb0f802f96a346f8bede889afd327f1.tar.gz servo-f02fd6330fb0f802f96a346f8bede889afd327f1.zip |
Remove watcher threads; replace with more panic handler goodness
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 4f69d82ed87..5eb530f1b19 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -6,6 +6,7 @@ #![feature(core_intrinsics)] #![feature(custom_derive)] #![cfg_attr(feature = "non-geckolib", feature(decode_utf16))] +#![feature(fnbox)] #![feature(optin_builtin_traits)] #![feature(plugin)] #![feature(panic_handler)] @@ -53,6 +54,7 @@ pub mod linked_list; pub mod non_geckolib; #[allow(unsafe_code)] pub mod opts; +pub mod panicking; #[allow(unsafe_code)] pub mod prefs; pub mod print_tree; |