1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-04-19 19:56:50 +00:00

chore: allow trait Fixable to be unused

This commit is contained in:
Paul-Christian Volkmer 2024-05-13 13:45:09 +02:00
parent 880325ce78
commit e82f413c7f

View File

@ -136,6 +136,7 @@ pub trait Checkable {
fn check(&self) -> Vec<CheckNotice>;
}
#[allow(unused)]
pub trait Fixable {
fn fix(&mut self) -> bool;
}