1
0
Fork 0
forked from wry/wry

all: address clippy lints

This commit is contained in:
Julian Orth 2025-11-28 13:32:02 +01:00
parent 0e49b33a7f
commit 669d995771
7 changed files with 10 additions and 31 deletions

View file

@ -234,18 +234,13 @@ where
}
}
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
#[derive(Copy, Clone, Eq, PartialEq, Debug, Default)]
enum BuilderOp {
#[default]
Add,
Sub,
}
impl Default for BuilderOp {
fn default() -> Self {
Self::Add
}
}
#[derive(Debug)]
pub struct RegionBuilder {
base: Rc<Region>,