forgot return

This commit is contained in:
fluxgen 2003-05-07 11:35:59 +00:00
parent 90dc9ca680
commit 956848a585

View file

@ -95,6 +95,7 @@ RefCount<Pointer> &RefCount<Pointer>::operator = (Pointer *p) {
m_data = p; // set data pointer
m_refcount = new unsigned int(0); // create new counter
incRefCount();
return *this;
}
template <typename Pointer>