Change the never-defined copy-constructor signature to refer to nsCOMArray<T>

instead of nsCOMArray. Should fix OS2 bustage, which noticed this because
it instantiates the function even when its not used
r=sicking, sr=mozbot, a=tinderbox
This commit is contained in:
bbaetz%student.usyd.edu.au 2002-10-15 05:19:30 +00:00
Родитель 12a8e67be7
Коммит 35ddc78531
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -209,7 +209,7 @@ class nsCOMArray : public nsCOMArray_base
private:
// don't implement these!
nsCOMArray& operator=(const nsCOMArray& other);
nsCOMArray<T>& operator=(const nsCOMArray<T>& other);
};