]> granicus.if.org Git - clang/commitdiff
Added better comment about protocol list for class ObjcQualifiedInterfaceType.
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 9 Oct 2007 17:14:13 +0000 (17:14 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 9 Oct 2007 17:14:13 +0000 (17:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42794 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h

index b5e946b6932a9ca15854aace239edcd684c8267e..33450b85f8fed487cc0325da34db33f91cc67bc4 100644 (file)
@@ -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<Proto1, Proto2, Proto1>.
+/// 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;