diff options
author | John McCall <rjmccall@apple.com> | 2011-10-18 21:02:43 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-10-18 21:02:43 +0000 |
commit | e0a22d06888c13989b3f72db319f1d498bf69153 (patch) | |
tree | b32f178c32688b4c8cadabfac0d387f21f235e3d /lib/AST/Expr.cpp | |
parent | ebaf0e6ab743394dda086a01b457838cb6e589a8 (diff) |
Macro metaprogramming for builtin types.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index b0bcfe09f6..427c331ed0 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -1766,7 +1766,7 @@ bool Expr::isBoundMemberFunction(ASTContext &Ctx) const { } QualType Expr::findBoundMemberType(const Expr *expr) { - assert(expr->getType()->isSpecificPlaceholderType(BuiltinType::BoundMember)); + assert(expr->hasPlaceholderType(BuiltinType::BoundMember)); // Bound member expressions are always one of these possibilities: // x->m x.m x->*y x.*y |