aboutsummaryrefslogtreecommitdiff
path: root/include/clang
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-07-29 14:06:03 +0000
committerSteve Naroff <snaroff@apple.com>2009-07-29 14:06:03 +0000
commit99b10be143e3148b9499af4c0e9ebaf46757cfe6 (patch)
tree9e8d910b4b5bb46898c18e094206dad4ba0fc215 /include/clang
parentef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7 (diff)
Incorporate feedback from Chris (on r76979).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r--include/clang/AST/ExprObjC.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/AST/ExprObjC.h b/include/clang/AST/ExprObjC.h
index d610b3c01e..16c5d6e0ea 100644
--- a/include/clang/AST/ExprObjC.h
+++ b/include/clang/AST/ExprObjC.h
@@ -496,7 +496,8 @@ public:
virtual child_iterator child_end();
};
-/// ObjCIsaExpr - Represent X->isa and X.isa (similiar in spirit to MemberExpr).
+/// ObjCIsaExpr - Represent X->isa and X.isa when X is an ObjC 'id' type.
+/// (similiar in spirit to MemberExpr).
class ObjCIsaExpr : public Expr {
/// Base - the expression for the base object pointer.
Stmt *Base;