fix new nightly lint on mikktspace (#18988)
# Objective - new nightly lint make CI fail ## Solution - Follow the lint: https://github.com/rust-lang/rust/pull/123239
This commit is contained in:
parent
9fca353782
commit
0fa115f911
@ -756,7 +756,7 @@ unsafe fn CompareSubGroups(mut pg1: *const SSubGroup, mut pg2: *const SSubGroup)
|
||||
return false;
|
||||
}
|
||||
while i < (*pg1).iNrFaces as usize && bStillSame {
|
||||
bStillSame = if (*pg1).pTriMembers[i] == (*pg2).pTriMembers[i] {
|
||||
bStillSame = if (&(*pg1).pTriMembers)[i] == (&(*pg2).pTriMembers)[i] {
|
||||
true
|
||||
} else {
|
||||
false
|
||||
|
Loading…
Reference in New Issue
Block a user