infinitive loop

This commit is contained in:
Stolyarov Aleksey 2015-06-10 10:29:41 +03:00
parent 8c4aa30214
commit 85d82f5903
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ int MatrixUtil::findMSBSet(int value)
{
int numDigits = 0;
while (value != 0) {
(size_t)value >> 1; // ??value >>>= 1;
value >>= 1;
++numDigits;
}
return numDigits;