We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d19ee1 commit db21800Copy full SHA for db21800
crates/cfg/src/lib.rs
@@ -41,12 +41,6 @@ impl CfgOptions {
41
self.enabled.insert(CfgAtom::KeyValue { key, value });
42
}
43
44
- pub fn append(&mut self, other: &CfgOptions) {
45
- for atom in &other.enabled {
46
- self.enabled.insert(atom.clone());
47
- }
48
49
-
50
pub fn apply_diff(&mut self, diff: CfgDiff) {
51
for atom in diff.enable {
52
self.enabled.insert(atom);
0 commit comments