diff options
-rw-r--r-- | include/clang/AST/Expr.h | 12 | ||||
-rw-r--r-- | lib/Sema/SemaCast.cpp | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 7c72b92e18..48682dc205 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -390,6 +390,18 @@ public: /// \brief Returns whether this expression refers to a vector element. bool refersToVectorElement() const; + + /// \brief Returns whether this expression has a placeholder type. + bool hasPlaceholderType() const { + return getType()->isPlaceholderType(); + } + + /// \brief Returns whether this expression has a specific placeholder type. + bool hasPlaceholderType(BuiltinType::Kind K) const { + if (const BuiltinType *BT = dyn_cast<BuiltinType>(getType())) + return BT->getKind() == K; + return false; + } /// isKnownToHaveBooleanValue - Return true if this is an integer expression /// that is known to return 0 or 1. This happens for _Bool/bool expressions diff --git a/lib/Sema/SemaCast.cpp b/lib/Sema/SemaCast.cpp index 8bd9351e0b..b20732a5f7 100644 --- a/lib/Sema/SemaCast.cpp +++ b/lib/Sema/SemaCast.cpp @@ -1728,7 +1728,7 @@ void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle) { checkNonOverloadPlaceholders(); if (SrcExpr.isInvalid()) return; - } + } // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". // This test is outside everything else because it's the only case where |