]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dynarray.cpp
define _LANGUAGE_C_PLUS_PLUS for IRIX (closes bug 1105676)
[wxWidgets.git] / src / common / dynarray.cpp
index 4f4915a25bb18965353d51ffac2f19974bb28b76..3f8fa81887ae6f040754407f8b8e2659d6333606 100644 (file)
 #include <stdlib.h>
 #include <string.h> // for memmove
 
-#ifndef max
-  #define max(a, b)   (((a) > (b)) ? (a) : (b))
-#endif
-
 // we cast the value to long from which we cast it to void * in IndexForInsert:
 // this can't work if the pointers are not big enough
 wxCOMPILE_TIME_ASSERT( sizeof(wxUIntPtr) <= sizeof(void *),