From: Fariborz Jahanian Date: Tue, 9 Oct 2007 17:14:13 +0000 (+0000) Subject: Added better comment about protocol list for class ObjcQualifiedInterfaceType. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=878520b6413663a13b1b56c7e3f256b1ecbb8db4;p=clang Added better comment about protocol list for class ObjcQualifiedInterfaceType. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42794 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index b5e946b693..33450b85f8 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -832,8 +832,10 @@ public: static bool classof(const ObjcInterfaceType *) { return true; } }; -/// - ObjcQualifiedInterfaceType - This class represense interface types +/// ObjcQualifiedInterfaceType - This class represents interface types /// 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 Type { // Interface type for this protocol conforming object type ObjcInterfaceType *InterfaceType;