clean up overwriting arch config

This commit is contained in:
steven-omaha
2023-02-23 15:32:02 +01:00
parent ee4fd5da37
commit 4a0ced581d
3 changed files with 15 additions and 15 deletions
@@ -1,3 +1,4 @@
use std::any::Any;
use std::collections::{HashMap, HashSet};
use std::fmt::Debug;
use std::process::{Command, ExitStatus};
@@ -114,6 +115,8 @@ pub trait Backend: Debug {
diff.sort_unstable();
Ok(diff)
}
fn as_any(&mut self) -> &mut dyn Any;
}
fn get_group_packages_map(
+4
View File
@@ -49,5 +49,9 @@ macro_rules! impl_backend_constants {
self.packages.insert(p);
}
}
fn as_any(&mut self) -> &mut dyn std::any::Any {
self
}
};
}