From 454abde1016dbaaaecae2350a975122e07fdfda2 Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Thu, 18 Apr 2013 04:22:04 +0900 Subject: [PATCH] Update comments in trefcountptr.h --- taglib/toolkit/trefcountptr.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)