Update tvgSwMath.cpp

fix typo.
This commit is contained in:
Hermet Park 2021-06-23 22:46:41 +09:00 committed by GitHub
parent 80090e1189
commit 59f189bcb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,6 @@
if (_BitScanReverse(&leadingZero, value)) return 31 - leadingZero; if (_BitScanReverse(&leadingZero, value)) return 31 - leadingZero;
else return 32; else return 32;
} }
}
#else #else
#define _clz(x) __builtin_clz((x)) #define _clz(x) __builtin_clz((x))
#endif #endif