From 3c7d0ffdc4401303d1ab06e1b90d9e048595592f Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Thu, 3 Jan 2002 15:57:59 +0000 Subject: [PATCH] AIX requires a constructor for the nsPermanentAtom since this relies on "new replacement" r=dbaron@fas.harvard.edu sr=shaver@mozilla.org # 112824 --- xpcom/ds/nsAtomTable.h | 1 + 1 file changed, 1 insertion(+) diff --git a/xpcom/ds/nsAtomTable.h b/xpcom/ds/nsAtomTable.h index b1bfba068b8c..62b849648030 100644 --- a/xpcom/ds/nsAtomTable.h +++ b/xpcom/ds/nsAtomTable.h @@ -76,6 +76,7 @@ public: class PermanentAtomImpl : public AtomImpl { public: + PermanentAtomImpl() : AtomImpl() {} NS_IMETHOD_(nsrefcnt) AddRef(); NS_IMETHOD_(nsrefcnt) Release();