mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Fix type mismatch error.
This commit is contained in:
parent
3fc0f89184
commit
53c60e2990
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ fn delete(set: ExpandSet, complement: bool) {
|
|||
|
||||
let is_allowed = |c : char| {
|
||||
if complement {
|
||||
bset.contains(&(c as usize))
|
||||
bset.contains(c as usize)
|
||||
} else {
|
||||
!bset.contains(&(c as usize))
|
||||
!bset.contains(c as usize)
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue