Update comments in trefcountptr.h

This commit is contained in:
Tsuda Kageyu 2013-04-18 04:22:04 +09:00
parent f97a422bc2
commit 454abde101

View File

@ -67,7 +67,8 @@ namespace TagLib {
# if defined(SUPPORT_TEMPLATE_ALIAS)
// Defines RefCountPtr<T> as an alias of shared_ptr<T>.
// Defines RefCountPtr<T> as an alias of shared_ptr<T>
// if shared_ptr<T> and the template alias are both available.
# if defined(HAVE_STD_SHARED_PTR) || defined(HAVE_TR1_SHARED_PTR)
@ -83,7 +84,8 @@ namespace TagLib {
# else
// Defines RefCountPtr<T> as an derived class of shared_ptr<T>.
// Defines RefCountPtr<T> as a derived class of shared_ptr<T>.
// if shared_ptr<T> is available but the template alias is not.
# if defined(HAVE_STD_SHARED_PTR) || defined(HAVE_TR1_SHARED_PTR)