From: Eli Friedman Date: Thu, 30 Aug 2012 22:22:09 +0000 (+0000) Subject: Switch a couple getAs uses to castAs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=482466b76174738def05d4ae3c3240bc83b57426;p=clang Switch a couple getAs uses to castAs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162948 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index d5b0be3ba4..bfc6f61c8f 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -903,7 +903,7 @@ std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const { } else if (const FunctionDecl *FD = dyn_cast(*I)) { const FunctionProtoType *FT = 0; if (FD->hasWrittenPrototype()) - FT = dyn_cast(FD->getType()->getAs()); + FT = dyn_cast(FD->getType()->castAs()); OS << *FD << '('; if (FT) { @@ -1859,7 +1859,7 @@ unsigned FunctionDecl::getBuiltinID() const { /// based on its FunctionType. This is the length of the ParamInfo array /// after it has been created. unsigned FunctionDecl::getNumParams() const { - const FunctionType *FT = getType()->getAs(); + const FunctionType *FT = getType()->castAs(); if (isa(FT)) return 0; return cast(FT)->getNumArgs();