Fix compilation

This commit is contained in:
Ivan 2019-04-25 18:44:08 +03:00 committed by GitHub
parent d58cd618be
commit be831dc98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ inline int Bits::Log2FloorNonZero(uint32 n) {
}
inline int Bits::Log2Floor(uint32 n) {
return (n == 0) ? -1 : Bits::Log2FloorNonZero(arg);
return (n == 0) ? -1 : Bits::Log2FloorNonZero(n);
}
inline int Bits::FindLSBSetNonZero(uint32 n) {