mirror of
https://github.com/servo/servo.git
synced 2025-09-10 23:18:20 +01:00
Fix some new warnings
This commit is contained in:
parent
112f1ddeba
commit
1d38bc0419
65 changed files with 179 additions and 175 deletions
|
@ -82,7 +82,7 @@ pub fn cascade<E>(
|
|||
parent_style_ignoring_first_line: Option<&ComputedValues>,
|
||||
layout_parent_style: Option<&ComputedValues>,
|
||||
visited_rules: Option<&StrongRuleNode>,
|
||||
font_metrics_provider: &FontMetricsProvider,
|
||||
font_metrics_provider: &dyn FontMetricsProvider,
|
||||
quirks_mode: QuirksMode,
|
||||
rule_cache: Option<&RuleCache>,
|
||||
rule_cache_conditions: &mut RuleCacheConditions,
|
||||
|
@ -116,7 +116,7 @@ fn cascade_rules<E>(
|
|||
parent_style: Option<&ComputedValues>,
|
||||
parent_style_ignoring_first_line: Option<&ComputedValues>,
|
||||
layout_parent_style: Option<&ComputedValues>,
|
||||
font_metrics_provider: &FontMetricsProvider,
|
||||
font_metrics_provider: &dyn FontMetricsProvider,
|
||||
cascade_mode: CascadeMode,
|
||||
quirks_mode: QuirksMode,
|
||||
rule_cache: Option<&RuleCache>,
|
||||
|
@ -213,7 +213,7 @@ pub fn apply_declarations<'a, E, F, I>(
|
|||
parent_style: Option<&ComputedValues>,
|
||||
parent_style_ignoring_first_line: Option<&ComputedValues>,
|
||||
layout_parent_style: Option<&ComputedValues>,
|
||||
font_metrics_provider: &FontMetricsProvider,
|
||||
font_metrics_provider: &dyn FontMetricsProvider,
|
||||
cascade_mode: CascadeMode,
|
||||
quirks_mode: QuirksMode,
|
||||
rule_cache: Option<&RuleCache>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue