* include/freetype/internal/ftcalc.h (FT_MSB): Verified `_MSC_VER'.

Actually `_BitScanReverse' is available since VS2005.
This commit is contained in:
Alexei Podtelezhnikov 2018-05-18 08:57:30 -04:00
parent 840b844301
commit 2f218a4c3a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-05-18 Alexei Podtelezhnikov <apodtele@gmail.com>
* include/freetype/internal/ftcalc.h (FT_MSB): Verified `_MSC_VER'.
Actually `_BitScanReverse' is available since VS2005.
2018-05-18 Werner Lemberg <wl@gnu.org>
* include/freetype/internal/ftcalc.h (FT_MSB): Use `_MSC_VER' value.

View File

@ -356,7 +356,7 @@ FT_BEGIN_HEADER
#endif /* __GNUC__ */
#elif defined( _MSC_VER ) && ( _MSC_VER >= 1800 )
#elif defined( _MSC_VER ) && ( _MSC_VER >= 1400 )
#if FT_SIZEOF_INT == 4