diff --git a/taglib/toolkit/trefcountptr.h b/taglib/toolkit/trefcountptr.h index f74168d8..535d0efd 100644 --- a/taglib/toolkit/trefcountptr.h +++ b/taglib/toolkit/trefcountptr.h @@ -67,7 +67,8 @@ namespace TagLib { # if defined(SUPPORT_TEMPLATE_ALIAS) - // Defines RefCountPtr as an alias of shared_ptr. + // Defines RefCountPtr as an alias of shared_ptr + // if shared_ptr 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 as an derived class of shared_ptr. + // Defines RefCountPtr as a derived class of shared_ptr. + // if shared_ptr is available but the template alias is not. # if defined(HAVE_STD_SHARED_PTR) || defined(HAVE_TR1_SHARED_PTR)