Ver Fonte

Merge pull request #4561 from vnen/pr-fix-win64-build

Fix build for Windows 64-bits with GCC
Rémi Verschelde há 9 anos atrás
pai
commit
78a616eab0
1 ficheiros alterados com 4 adições e 0 exclusões
  1. 4 0
      drivers/gl_context/glew.h

+ 4 - 0
drivers/gl_context/glew.h

@@ -153,7 +153,11 @@ typedef unsigned short wchar_t;
 #endif
 #if !defined(_PTRDIFF_T_DEFINED) && !defined(_PTRDIFF_T_)
 #  ifdef _WIN64
+#    ifdef _MSC_VER // Using MSVC
 typedef __int64 ptrdiff_t;
+#    else // Using GCC
+typedef long int ptrdiff_t;
+#    endif
 #  else
 typedef _W64 int ptrdiff_t;
 #  endif