mirror of
https://github.com/curl/curl.git
synced 2026-07-23 10:07:16 +03:00
msvc: drop checks for _MSC_VER >= 900
It's Visual C++, 32-bit, version 2.0, released in 1993. Used to verify if `_INTEGRAL_MAX_BITS` is available. After this patch we assume `_INTEGRAL_MAX_BITS` is always available in MSVC. Closes #15952
This commit is contained in:
parent
8363dd51bc
commit
ca18198dd4
4 changed files with 8 additions and 10 deletions
|
|
@ -37,14 +37,12 @@
|
|||
#ifdef HAVE_LONGLONG
|
||||
# define LONG_LONG_TYPE long long
|
||||
# define HAVE_LONG_LONG_TYPE
|
||||
#elif defined(_MSC_VER) && (_INTEGRAL_MAX_BITS >= 64)
|
||||
# define LONG_LONG_TYPE __int64
|
||||
# define HAVE_LONG_LONG_TYPE
|
||||
#else
|
||||
# if defined(_MSC_VER) && (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
|
||||
# define LONG_LONG_TYPE __int64
|
||||
# define HAVE_LONG_LONG_TYPE
|
||||
# else
|
||||
# undef LONG_LONG_TYPE
|
||||
# undef HAVE_LONG_LONG_TYPE
|
||||
# endif
|
||||
# undef LONG_LONG_TYPE
|
||||
# undef HAVE_LONG_LONG_TYPE
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue