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->();