Skip to content
Snippets Groups Projects
Commit 6a775dc9 authored by rswindell's avatar rswindell
Browse files

Disable 64-bit (long long) support for Borland builds for the time-being

(Borland doesn't have strto[u]ll).
parent 2ab0ced3
Branches
Tags
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#define XP_PRINTF_TYPE_USHORT XP_PRINTF_TYPE_UINT #define XP_PRINTF_TYPE_USHORT XP_PRINTF_TYPE_UINT
#define XP_PRINTF_TYPE_LONG 3 #define XP_PRINTF_TYPE_LONG 3
#define XP_PRINTF_TYPE_ULONG 4 #define XP_PRINTF_TYPE_ULONG 4
#if !defined(_MSC_VER) #if !defined(_MSC_VER) && !defined(__BORLANDC__)
#define XP_PRINTF_TYPE_LONGLONG 5 #define XP_PRINTF_TYPE_LONGLONG 5
#define XP_PRINTF_TYPE_ULONGLONG 6 #define XP_PRINTF_TYPE_ULONGLONG 6
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment