From 7de2c281bb9831be7f975f3423307497a0aff31f Mon Sep 17 00:00:00 2001 From: tchernobog Date: Tue, 7 Feb 2006 20:21:19 +0000 Subject: [PATCH] - Fix documentation for smartp.hh git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@300 3ecf2c5c-341e-0410-92b4-d18e462d057c --- src/templates/smartp.hh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/templates/smartp.hh b/src/templates/smartp.hh index 03176a6..f86aae1 100644 --- a/src/templates/smartp.hh +++ b/src/templates/smartp.hh @@ -26,10 +26,6 @@ namespace memory { * keep track of when and if a stored object * should be destroyed. * - * Storing C++ built-in types in an object of - * this class doesn't make a lot of sense, since - * you can't dereference a smart_ptr<>. - * * \param T The type of the object to store * \param isArray a boolean value telling if we're * storing an array or a single object (the default) @@ -67,7 +63,7 @@ namespace memory { /** \brief Access to stored object's members * - * Use this operator to access to object + * Use this operator to access object * methods and data. */ inline T* operator->();