From 921b3c179967bc006de91cffba50921e16a23cda Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 9 Feb 1999 22:58:34 +0000 Subject: [PATCH] fixed somebody's typo in a preprocessor directive (&6 --> &&) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1661 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/object.h b/include/wx/object.h index f285a791f5..a335a1dfcc 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -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 -- 2.47.2