mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
; * mps/code/mps.h (mps_word_t): Fix condition for MinGW64.
This commit is contained in:
parent
e223d2f339
commit
e850bcf6c6
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@
|
|||
* Then Microsoft made unsigned long shorter than a pointer on Win64. Ugh.
|
||||
*/
|
||||
|
||||
#if defined(_MSC_VER) && defined(_WIN32) && defined(_WIN64) && defined(_M_X64)
|
||||
#if (defined(_MSC_VER) || defined(__GNUC__)) && defined(_WIN32) && defined(_WIN64) && defined(_M_X64)
|
||||
typedef unsigned __int64 mps_word_t;
|
||||
#else
|
||||
typedef unsigned long mps_word_t;
|
||||
|
|
|
|||
Loading…
Reference in a new issue