Resolve nightly clippy warning in test_field_cfg
This commit is contained in:
parent
db960e5fb4
commit
f39eb9e229
|
@ -8,7 +8,12 @@ struct CfgClass {
|
|||
#[cfg(any())]
|
||||
pub a: u32,
|
||||
#[pyo3(get, set)]
|
||||
#[cfg(all())]
|
||||
// This is always true
|
||||
#[cfg(any(
|
||||
target_family = "unix",
|
||||
target_family = "windows",
|
||||
target_family = "wasm"
|
||||
))]
|
||||
pub b: u32,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue