Fix compilation

This commit is contained in:
Ivan
2019-04-25 18:44:08 +03:00
committed by GitHub
parent d58cd618be
commit be831dc98c

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) {