diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2018-07-10 14:43:11 -0700 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-07-30 14:21:45 +0200 |
commit | d4fcd8fb0c25c4678e88a1b56cf7676e2a5e240c (patch) | |
tree | 5e76c354f1f822b6e3add1af28e48ba3fbb5f1c2 /components/script/lib.rs | |
parent | 9dda87aa70df51205c7744b382f3abd2c3db3439 (diff) | |
download | servo-d4fcd8fb0c25c4678e88a1b56cf7676e2a5e240c.tar.gz servo-d4fcd8fb0c25c4678e88a1b56cf7676e2a5e240c.zip |
Remove recursion limit
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 3275f10a65f..5125607219b 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -13,8 +13,6 @@ #![deny(unsafe_code)] #![allow(non_snake_case)] -#![recursion_limit = "128"] - #![doc = "The script crate contains all matters DOM."] #![plugin(script_plugins)] |