Define wxLongLong_t for Intel compiler.
It supports the same __int64 type and printf() format specifier for it as MSVC does under Windows. Closes #15359. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1055,7 +1055,7 @@ typedef wxUint32 wxDword;
|
|||||||
architectures to be able to pass wxLongLong_t to the standard functions
|
architectures to be able to pass wxLongLong_t to the standard functions
|
||||||
prototyped as taking "long long" such as strtoll().
|
prototyped as taking "long long" such as strtoll().
|
||||||
*/
|
*/
|
||||||
#if (defined(__VISUALC__) && defined(__WIN32__))
|
#if (defined(__VISUALC__) || defined(__INTELC__)) && defined(__WIN32__)
|
||||||
#define wxLongLong_t __int64
|
#define wxLongLong_t __int64
|
||||||
#define wxLongLongSuffix i64
|
#define wxLongLongSuffix i64
|
||||||
#define wxLongLongFmtSpec "I64"
|
#define wxLongLongFmtSpec "I64"
|
||||||
|
Reference in New Issue
Block a user