aboutsummaryrefslogtreecommitdiff
path: root/crates/cfg
diff options
context:
space:
mode:
Diffstat (limited to 'crates/cfg')
-rw-r--r--crates/cfg/src/dnf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/cfg/src/dnf.rs b/crates/cfg/src/dnf.rs
index 580c9a9a2..30f4bcdf7 100644
--- a/crates/cfg/src/dnf.rs
+++ b/crates/cfg/src/dnf.rs
@@ -30,7 +30,7 @@ impl DnfExpr {
30 pub fn new(expr: CfgExpr) -> Self { 30 pub fn new(expr: CfgExpr) -> Self {
31 let builder = Builder { expr: DnfExpr { conjunctions: Vec::new() } }; 31 let builder = Builder { expr: DnfExpr { conjunctions: Vec::new() } };
32 32
33 builder.lower(expr.clone()) 33 builder.lower(expr)
34 } 34 }
35 35
36 /// Computes a list of present or absent atoms in `opts` that cause this expression to evaluate 36 /// Computes a list of present or absent atoms in `opts` that cause this expression to evaluate