diff options
author | Dan Gudmundsson <[email protected]> | 2017-05-11 10:37:59 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-05-11 10:37:59 +0200 |
commit | 327036428ff18a4268d4c10506945efe7ca1d66c (patch) | |
tree | 26ffd9fadd26d247c6a67905e3f95b6fe23ddb16 /lib/wx | |
parent | 57faf8743b693f02eda2ba0a379e234f554d5e96 (diff) | |
download | otp-327036428ff18a4268d4c10506945efe7ca1d66c.tar.gz otp-327036428ff18a4268d4c10506945efe7ca1d66c.tar.bz2 otp-327036428ff18a4268d4c10506945efe7ca1d66c.zip |
wx: Fix builds on VS-2017
And while we at it recommend wxWidgets-3.0.3
Diffstat (limited to 'lib/wx')
-rw-r--r-- | lib/wx/c_src/egl_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wx/c_src/egl_impl.h b/lib/wx/c_src/egl_impl.h index 719b4926db..7ecd484de5 100644 --- a/lib/wx/c_src/egl_impl.h +++ b/lib/wx/c_src/egl_impl.h @@ -112,7 +112,7 @@ typedef long int int32_t; typedef long long int int64_t; typedef unsigned long long int uint64_t; #elif defined(WIN32) && defined(_MSC_VER) -typedef long int int32_t; +typedef __int32 int32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; #elif defined(WIN32) && defined(__GNUC__) |