X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b2a9ee30255393da39f4ee062b9bb03e5e001edb..594f0f5bf1355fb8d58f403d3ebacc1c1767c429:/include/wx/longlong.h

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__)