From: guido Date: Mon, 6 Mar 2000 20:23:39 +0000 (+0000) Subject: Comment clearer X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02790c9e9519063db8f485d3eed10bb43338d25c;p=dealii-svn.git Comment clearer git-svn-id: https://svn.dealii.org/trunk@2556 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/smartpointer.h b/deal.II/base/include/base/smartpointer.h index 8ac3f00a1b..2b6a27335f 100644 --- a/deal.II/base/include/base/smartpointer.h +++ b/deal.II/base/include/base/smartpointer.h @@ -82,16 +82,20 @@ class SmartPointer ~SmartPointer(); /** - * Assignment operator for - * normal pointers. Change of - * subscription is necessary. + * Assignment operator for normal + * pointers. The pointer + * subscribes to the new object + * automatically and unsubscribes + * to an old one if it exists. */ SmartPointer & operator= (T *tt); /** *Assignment operator for - * #SmartPointer#. Change of - * subscription is necessary. + * #SmartPointer#. The pointer + * subscribes to the new object + * automatically and unsubscribes + * to an old one if it exists. */ SmartPointer & operator= (const SmartPointer& tt);