scc and I decided that the explicit keyword was not necessary for the constructor.

It never hurts you to make an nsCOMPtr.  MJ
This commit is contained in:
mjudge%netscape.com 1999-01-15 18:57:31 +00:00
Родитель 2fc3084b52
Коммит d3c02c8cdd
4 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -417,7 +417,6 @@ class nsCOMPtr
public:
typedef T element_type;
explicit
nsCOMPtr( nsISupports* aRawPtr = 0 )
: mRawPtr(0),
mIsAwaitingAddRef(0)

Просмотреть файл

@ -417,7 +417,6 @@ class nsCOMPtr
public:
typedef T element_type;
explicit
nsCOMPtr( nsISupports* aRawPtr = 0 )
: mRawPtr(0),
mIsAwaitingAddRef(0)

Просмотреть файл

@ -417,7 +417,6 @@ class nsCOMPtr
public:
typedef T element_type;
explicit
nsCOMPtr( nsISupports* aRawPtr = 0 )
: mRawPtr(0),
mIsAwaitingAddRef(0)

Просмотреть файл

@ -76,6 +76,7 @@ typedef PRUint32 nsrefcnt;
*/
class nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_ISUPPORTS_IID; return iid; }
/**
* @name Methods
*/