From: RĂ©mi Verschelde Date: Sat, 19 Nov 2016 00:13:00 +0000 (+0100) Subject: WinDefs: Do not redefine uintptr_t X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=commitdiff_plain;h=73f429f8c67d23c7b408fa2e195592d779ade332 WinDefs: Do not redefine uintptr_t Fixes build with mingw64. mingw32 still builds fine. The typedef might have been needed for MSVC, if so we will readd it with a proper conditional. --- diff --git a/Source/WinDefs.h b/Source/WinDefs.h index 2609273..47fb4d3 100644 --- a/Source/WinDefs.h +++ b/Source/WinDefs.h @@ -89,8 +89,6 @@ inline bool isnormal( double x) } */ -typedef unsigned int uintptr_t; - // fix file names to use '/' instead of ':' char* ConvertFileName( const char* orgfilename);