compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-01-28 20:56:32 +00:00
parent 7923c64946
commit 7d0bb74d2b

View File

@ -29,16 +29,16 @@
// what to test? // what to test?
//#define TEST_ARRAYS #define TEST_ARRAYS
//#define TEST_CMDLINE #define TEST_CMDLINE
//#define TEST_DIR #define TEST_DIR
//#define TEST_EXECUTE #define TEST_EXECUTE
//#define TEST_LOG #define TEST_LOG
//#define TEST_LONGLONG #define TEST_LONGLONG
//#define TEST_MIME #define TEST_MIME
#define TEST_STRINGS #define TEST_STRINGS
//#define TEST_THREADS #define TEST_THREADS
//#define TEST_TIME #define TEST_TIME
// ============================================================================ // ============================================================================
// implementation // implementation
@ -254,12 +254,12 @@ static void TestMimeEnum()
// get a random 64 bit number // get a random 64 bit number
#define RAND_LL() MAKE_LL(rand(), rand(), rand(), rand()) #define RAND_LL() MAKE_LL(rand(), rand(), rand(), rand())
#if wxUSE_LONGLONG_NATIVE #if wxUSE_LONGLONG_WX
inline bool operator==(const wxLongLongWx& a, const wxLongLongNative& b) inline bool operator==(const wxLongLongWx& a, const wxLongLongNative& b)
{ return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); } { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
inline bool operator==(const wxLongLongNative& a, const wxLongLongWx& b) inline bool operator==(const wxLongLongNative& a, const wxLongLongWx& b)
{ return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); } { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
#endif // wxUSE_LONGLONG_NATIVE #endif // wxUSE_LONGLONG_WX
static void TestSpeed() static void TestSpeed()
{ {