From a7c27f6a4d8dd183904d0e8b6b25c924c6cfb590 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 6 Mar 2000 20:23:39 +0000 Subject: [PATCH] Comment clearer git-svn-id: https://svn.dealii.org/trunk@2556 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/smartpointer.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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); -- 2.39.5