From 7e3435e8aab325af918845f098a27efb2cb64d73 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Fri, 15 Oct 2004 18:03:35 +0000 Subject: [PATCH] Reduce code size and work done by do_GetInterface by removing unneeded inline nsCOMPtr. Pointed out by Bernard Alleysson . b=264456 r=darin git-svn-id: svn://10.0.0.236/trunk@163833 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/glue/nsIInterfaceRequestorUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpcom/glue/nsIInterfaceRequestorUtils.h b/mozilla/xpcom/glue/nsIInterfaceRequestorUtils.h index e971dd4bb2a..7a635158e7a 100644 --- a/mozilla/xpcom/glue/nsIInterfaceRequestorUtils.h +++ b/mozilla/xpcom/glue/nsIInterfaceRequestorUtils.h @@ -68,7 +68,7 @@ class NS_COM nsGetInterface : public nsCOMPtr_helper virtual nsresult NS_FASTCALL operator()( const nsIID&, void** ) const; private: - nsCOMPtr mSource; + nsISupports* mSource; nsresult* mErrorPtr; };