removed explicit from copy constructor

This commit is contained in:
fluxgen 2003-01-11 01:16:36 +00:00
parent 076e3d1185
commit 1acdd42fd7

View file

@ -31,7 +31,7 @@ public:
RefCount();
explicit RefCount(Pointer *p);
explicit RefCount(RefCount<Pointer> &copy);
explicit RefCount(const RefCount<Pointer> &copy);
RefCount(const RefCount<Pointer> &copy);
~RefCount();
RefCount<Pointer> &operator = (const RefCount<Pointer> &copy);
RefCount<Pointer> &operator = (Pointer *p);