[cfe-commits] r42794 - /cfe/trunk/include/clang/AST/Type.h
Fariborz Jahanian
fjahanian at apple.com
Tue Oct 9 10:14:16 PDT 2007
Author: fjahanian
Date: Tue Oct 9 12:14:13 2007
New Revision: 42794
URL: http://llvm.org/viewvc/llvm-project?rev=42794&view=rev
Log:
Added better comment about protocol list for class ObjcQualifiedInterfaceType.
Modified:
cfe/trunk/include/clang/AST/Type.h
Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=42794&r1=42793&r2=42794&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Tue Oct 9 12:14:13 2007
@@ -832,8 +832,10 @@
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;
More information about the cfe-commits
mailing list