]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed somebody's typo in a preprocessor directive (&6 --> &&)
authorRobin Dunn <robin@alldunn.com>
Tue, 9 Feb 1999 22:58:34 +0000 (22:58 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 9 Feb 1999 22:58:34 +0000 (22:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1661 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/object.h

index f285a791f5f713bc8a208988a37f8b865a69dcd7..a335a1dfcc3e9fa40aec34e14069b882b18f47ca 100644 (file)
@@ -204,7 +204,7 @@ class WXDLLEXPORT wxObject
 #endif
 
     // Causes problems for VC++
-#if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) &6 !defined( __MWERKS__)
+#if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) && !defined( __MWERKS__)
   void * operator new[] (size_t size, char * fileName = NULL, int lineNum = 0);
   void operator delete[] (void * buf);
 #endif