]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Jan 2000 20:56:32 +0000 (20:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Jan 2000 20:56:32 +0000 (20:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/console/console.cpp

index 287019242bf29dae82e37d956ec7f67c2c7538d3..3f924c1dddc048b216e9a65c873153b16f199e18 100644 (file)
 
 // what to test?
 
-//#define TEST_ARRAYS
-//#define TEST_CMDLINE
-//#define TEST_DIR
-//#define TEST_EXECUTE
-//#define TEST_LOG
-//#define TEST_LONGLONG
-//#define TEST_MIME
+#define TEST_ARRAYS
+#define TEST_CMDLINE
+#define TEST_DIR
+#define TEST_EXECUTE
+#define TEST_LOG
+#define TEST_LONGLONG
+#define TEST_MIME
 #define TEST_STRINGS
-//#define TEST_THREADS
-//#define TEST_TIME
+#define TEST_THREADS
+#define TEST_TIME
 
 // ============================================================================
 // implementation
@@ -254,12 +254,12 @@ static void TestMimeEnum()
 // get a random 64 bit number
 #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)
     { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
 inline bool operator==(const wxLongLongNative& a, const wxLongLongWx& b)
     { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
-#endif // wxUSE_LONGLONG_NATIVE
+#endif // wxUSE_LONGLONG_WX
 
 static void TestSpeed()
 {