forked from OSchip/llvm-project
Remove extraneous "virtual" keyword and non-virtual destructor. Caught by
-Wnon-virtual-dtor! llvm-svn: 132619
This commit is contained in:
parent
fb5e8c2814
commit
c101ebfc8f
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue