From: Chris Lattner Date: Mon, 7 Apr 2008 04:58:07 +0000 (+0000) Subject: improve comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=372bed091b6b1eca596130208e227e7077154de4;p=clang improve comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49311 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 1b37e39361..bcefaeb1f6 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -1076,7 +1076,8 @@ public: }; /// ObjCQualifiedInterfaceType - This class represents interface types -/// conforming to a list of protocols; such as, INTF. +/// conforming to a list of protocols, such as INTF. +/// /// Duplicate protocols are removed and protocol list is canonicalized to be in /// alphabetical order. class ObjCQualifiedInterfaceType : public ObjCInterfaceType, @@ -1116,7 +1117,10 @@ public: static bool classof(const ObjCQualifiedInterfaceType *) { return true; } }; -/// ObjCQualifiedIdType - to represent id +/// ObjCQualifiedIdType - to represent id. +/// +/// Duplicate protocols are removed and protocol list is canonicalized to be in +/// alphabetical order. class ObjCQualifiedIdType : public Type, public llvm::FoldingSetNode { // List of protocols for this protocol conforming 'id' type