Applied patch [ 817483 ] fix for Formatspec for 64bit integer with mingw32 compiler
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -68,7 +68,11 @@
|
||||
(defined(__DJGPP__) && __DJGPP__ >= 2)
|
||||
#define wxLongLong_t long long
|
||||
#define wxLongLongSuffix ll
|
||||
#if defined(__MINGW32__)
|
||||
#define wxLongLongFmtSpec _T("I64")
|
||||
#else
|
||||
#define wxLongLongFmtSpec _T("ll")
|
||||
#endif
|
||||
#elif defined(__MWERKS__)
|
||||
#if __option(longlong)
|
||||
#define wxLongLong_t long long
|
||||
|
Reference in New Issue
Block a user