From d19e79247c8be2463b5eff63823dd7b06718d1c9 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 9 Jul 2000 14:08:28 +0000 Subject: [PATCH] Fix for BC++/16-bit and wxLongLong git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/longlong.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 4b52ba954c..113bc1dd33 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -50,7 +50,7 @@ #define wxLongLongIsLong #elif (defined(__VISUALC__) && defined(__WIN32__)) || defined( __VMS__ ) #define wxLongLong_t __int64 -#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520) +#elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) #define wxLongLong_t __int64 #elif defined(__GNUG__) #define wxLongLong_t long long @@ -72,7 +72,6 @@ #pragma warning "Your compiler does not appear to support 64 bit "\ "integers, using emulation class instead." #endif - #define wxUSE_LONGLONG_WX 1 #endif // compiler