From 0f95d38f82909a5e44d8e333f23d5b46777afbf3 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Tue, 18 Mar 2003 15:12:20 +0000 Subject: [PATCH] Fix bustage on IRIX 6.5 tinderbox (native compiler) with another platform test. b=66134 git-svn-id: svn://10.0.0.236/trunk@139675 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/glue/nsCOMPtr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpcom/glue/nsCOMPtr.h b/mozilla/xpcom/glue/nsCOMPtr.h index 1b1196cc4f8..ca70e48f7a2 100644 --- a/mozilla/xpcom/glue/nsCOMPtr.h +++ b/mozilla/xpcom/glue/nsCOMPtr.h @@ -196,7 +196,7 @@ class nsDerivedSafe : public T nsrefcnt Release(void); #endif -#if !defined(XP_OS2_VACPP) && !defined(AIX) +#if !defined(XP_OS2_VACPP) && !defined(AIX) && !defined(IRIX) void operator delete( void*, size_t ); // NOT TO BE IMPLEMENTED // declaring |operator delete| private makes calling delete on an interface pointer a compile error #endif