mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
changed quickersort with pdqsort
This commit is contained in:
parent
556a46f537
commit
07f04ced2e
4 changed files with 11 additions and 16 deletions
|
@ -13,9 +13,9 @@ use error_reporting::StdoutErrorReporter;
|
|||
use keyframes::KeyframesAnimation;
|
||||
use media_queries::Device;
|
||||
use parking_lot::RwLock;
|
||||
use pdqsort::sort_by;
|
||||
use properties::{self, CascadeFlags, ComputedValues, INHERIT_ALL, Importance};
|
||||
use properties::{PropertyDeclaration, PropertyDeclarationBlock};
|
||||
use quickersort::sort_by;
|
||||
use restyle_hints::{RestyleHint, DependencySet};
|
||||
use rule_tree::{RuleTree, StrongRuleNode, StyleSource};
|
||||
use selector_parser::{ElementExt, SelectorImpl, PseudoElement, Snapshot};
|
||||
|
@ -827,7 +827,7 @@ pub struct SelectorMap {
|
|||
|
||||
#[inline]
|
||||
fn sort_by_key<T, F: Fn(&T) -> K, K: Ord>(v: &mut [T], f: F) {
|
||||
sort_by(v, &|a, b| f(a).cmp(&f(b)))
|
||||
sort_by(v, |a, b| f(a).cmp(&f(b)))
|
||||
}
|
||||
|
||||
impl SelectorMap {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue