From: Robin Dunn Date: Thu, 27 Sep 2001 02:02:44 +0000 (+0000) Subject: Fixed compilation error X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5bf2abe34850e0952a44f3be4a4390ea12c55bd0 Fixed compilation error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 7af86e3301..cc2278a565 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -51,12 +51,12 @@ #if defined(SIZEOF_LONG) && (SIZEOF_LONG == 8) #define wxLongLong_t long #define wxLongLongIsLong -#elif defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8 - #define wxLongLong_t long long #elif (defined(__VISUALC__) && defined(__WIN32__)) || defined( __VMS__ ) #define wxLongLong_t __int64 #elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) #define wxLongLong_t __int64 +#elif defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8 + #define wxLongLong_t long long #elif defined(__MINGW32__) #define wxLongLong_t long long #elif defined(__MWERKS__)