removing the explicit keyword from the copy constructor

to clear up bustage on hpux
r= ccarlen@netscape.com
sr= scc@mozilla.org
# 61367
This commit is contained in:
jdunn%netscape.com 2000-11-30 11:46:12 +00:00
Родитель d8a0599f20
Коммит 3152dcca0c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -34,7 +34,7 @@ class ProfileStruct
{
public:
explicit ProfileStruct() { }
explicit ProfileStruct(const ProfileStruct& src);
ProfileStruct(const ProfileStruct& src);
~ProfileStruct() { }