diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-11-03 15:48:34 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-11-03 15:48:34 -0700 |
commit | 69f8b46f362a828ffaefe9623355bc1ad76dc5e0 (patch) | |
tree | e30bca45f7905352dfdc6402b5ad564dfb93a3e1 /components/script/lib.rs | |
parent | 97d57689e96e3ec904916cc703bc7878675cfe5d (diff) | |
parent | b245a2475f89f01c0e52780213903904b4e8513f (diff) | |
download | servo-69f8b46f362a828ffaefe9623355bc1ad76dc5e0.tar.gz servo-69f8b46f362a828ffaefe9623355bc1ad76dc5e0.zip |
auto merge of #3835 : pcwalton/servo/script-microoptzns, r=Ms2ger
This is a grab bag of various microoptimizations for script that I came across when profiling our performance on RoboHornet.
r? @jdm
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 1624a8c2653..cbacf516a3f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -5,7 +5,7 @@ #![comment = "The Servo Parallel Browser Project"] #![license = "MPL"] -#![feature(globs, macro_rules, struct_variant, phase, unsafe_destructor)] +#![feature(default_type_params, globs, macro_rules, struct_variant, phase, unsafe_destructor)] #![deny(unused_imports, unused_variable)] #![allow(non_snake_case)] |