From: Daniel Arndt Date: Sat, 14 Oct 2017 12:27:18 +0000 (+0200) Subject: Fix description for shared_ptr X-Git-Tag: v9.0.0-rc1~950^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfde63ffe03f5065b47aed0f806830aacdf94ffa;p=dealii.git Fix description for shared_ptr --- diff --git a/include/deal.II/base/thread_management.h b/include/deal.II/base/thread_management.h index eb76b61e22..263b8b3bf9 100644 --- a/include/deal.II/base/thread_management.h +++ b/include/deal.II/base/thread_management.h @@ -1053,9 +1053,8 @@ namespace Threads private: /** * Shared pointer to the object representing the thread, and abstracting - * operating system functions to work on it. Boost's shared pointer - * implementation will make sure that that object lives as long as there - * is at least one subscriber to it. + * operating system functions to work on it. This also makes sure that the + * object lives as long as there is at least one subscriber to it. */ std::shared_ptr > thread_descriptor; }; @@ -1735,9 +1734,8 @@ namespace Threads //@} private: /** - * Shared pointer to the object representing the task. Boost's shared - * pointer implementation will make sure that that object lives as long as - * there is at least one subscriber to it. + * Shared pointer to the object representing the task. This makes sure that + * the object lives as long as there is at least one subscriber to it. */ std::shared_ptr > task_descriptor; };