Complete doc

This commit is contained in:
Baptiste Wicht 2016-09-30 21:50:30 +02:00
parent 406ea8bbde
commit 947e5c041a
No known key found for this signature in database
GPG Key ID: C5566B6C7F884532

View File

@ -17,7 +17,9 @@ namespace std {
/*!
* \brief A shared_ptr ptr of type T.
*
* TODO
* A shared pointer is a reference-counted pointer, with several pointers being
* able to point to the same managed object. When the reference counter goes
* down to zero, the object is automatically deleted.
*/
template <typename T>
struct shared_ptr {