Remove extraneous "virtual" keyword and non-virtual destructor. Caught by

-Wnon-virtual-dtor!

llvm-svn: 132619
This commit is contained in:
Nick Lewycky 2011-06-04 02:04:22 +00:00
parent fb5e8c2814
commit c101ebfc8f
1 changed files with 1 additions and 3 deletions

View File

@ -4046,13 +4046,11 @@ public:
/// \brief Build an empty __builtin_astype
explicit AsTypeExpr(EmptyShell Empty) : Expr(AsTypeExprClass, Empty) {}
~AsTypeExpr() { }
/// getSrcExpr - Return the Expr to be converted.
Expr *getSrcExpr() const { return SrcExpr; }
QualType getDstType() const { return DstType; }
virtual SourceRange getSourceRange() const {
SourceRange getSourceRange() const {
return SourceRange(BuiltinLoc, RParenLoc);
}