From 1fe1cd3fe9da3f34d8529a0c4cc89fdc61af5065 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 17:44:03 +0900 Subject: fix(compile): add dyn keyword to all trait object usages (E0782) Co-Authored-By: Claude Sonnet 4.6 --- crates/shirabe/src/dependency_resolver/solver_problems_exception.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/dependency_resolver/solver_problems_exception.rs') diff --git a/crates/shirabe/src/dependency_resolver/solver_problems_exception.rs b/crates/shirabe/src/dependency_resolver/solver_problems_exception.rs index ddc8746..d739991 100644 --- a/crates/shirabe/src/dependency_resolver/solver_problems_exception.rs +++ b/crates/shirabe/src/dependency_resolver/solver_problems_exception.rs @@ -13,13 +13,13 @@ use crate::util::ini_helper::IniHelper; pub struct SolverProblemsException { inner: RuntimeException, pub(crate) problems: Vec, - pub(crate) learned_pool: Vec>, + pub(crate) learned_pool: Vec>>, } impl SolverProblemsException { pub const ERROR_DEPENDENCY_RESOLUTION_FAILED: i64 = 2; - pub fn new(problems: Vec, learned_pool: Vec>) -> Self { + pub fn new(problems: Vec, learned_pool: Vec>>) -> Self { let message = format!( "Failed resolving dependencies with {} problems, call getPrettyString to get formatted details", problems.len() @@ -143,7 +143,7 @@ impl SolverProblemsException { text } - fn get_extension_problems(&self, reason_sets: Vec>) -> Vec { + fn get_extension_problems(&self, reason_sets: Vec>>) -> Vec { let mut missing_extensions: indexmap::IndexMap = indexmap::IndexMap::new(); for reason_set in reason_sets { for rule in reason_set { -- cgit v1.3.1