From 3f73f722dbb019b7ff59a43c50f4ac3e40f7057a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Terje=20Sletteb=C3=B8?= Date: Fri, 14 Mar 2003 07:55:00 +0000 Subject: [PATCH] Removed superfluous */ in description [SVN r17909] --- include/boost/type_traits/is_base_and_derived.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/type_traits/is_base_and_derived.hpp b/include/boost/type_traits/is_base_and_derived.hpp index fec3075..af9e2fb 100644 --- a/include/boost/type_traits/is_base_and_derived.hpp +++ b/include/boost/type_traits/is_base_and_derived.hpp @@ -64,7 +64,7 @@ For "static no_type check(B const volatile *, int)" we have the conversion sequences: C -> C const (SC - Qualification Adjustment) -> B const volatile* (UDC) -C -> D const volatile* (UDC) -> B1 const volatile*/B2 const volatile* -> +C -> D const volatile* (UDC) -> B1 const volatile* / B2 const volatile* -> B const volatile* (SC - Conversion) For "static yes_type check(D const volatile *, T)" we have the conversion @@ -79,7 +79,7 @@ first function this means choosing between C -> C const and C -> C, and it chooses the latter, because it's a proper subset (13.3.3.2/3/2) of the former. Therefore, we have: -C -> D const volatile* (UDC) -> B1 const volatile*/B2 const volatile* -> +C -> D const volatile* (UDC) -> B1 const volatile* / B2 const volatile* -> B const volatile* (SC - Conversion) C -> D const volatile* (UDC)