1
0
Fork 0
forked from wry/wry

all: address clippy lints

This commit is contained in:
Julian Orth 2024-03-23 00:39:15 +01:00
parent 544f23ffb0
commit 84e6b74893
3 changed files with 3 additions and 6 deletions

View file

@ -813,7 +813,7 @@ struct Extension {
#[derive(Debug)]
enum NamedType {
Struct(Rc<Struct>),
Bitmask(Rc<Bitmask>),
Bitmask(#[allow(dead_code)] Rc<Bitmask>),
Enum(Rc<Enum>),
}