diff options
Diffstat (limited to 'include/clang/AST/Stmt.h')
-rw-r--r-- | include/clang/AST/Stmt.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index 5a4c93d695..b86717728c 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -339,8 +339,6 @@ public: /// \brief Build an empty null statement. explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) { } - NullStmt* Clone(ASTContext &C) const; - SourceLocation getSemiLoc() const { return SemiLoc; } void setSemiLoc(SourceLocation L) { SemiLoc = L; } @@ -955,8 +953,6 @@ public: return SourceRange(ContinueLoc); } - ContinueStmt* Clone(ASTContext &C) const; - static bool classof(const Stmt *T) { return T->getStmtClass() == ContinueStmtClass; } @@ -982,8 +978,6 @@ public: virtual SourceRange getSourceRange() const { return SourceRange(BreakLoc); } - BreakStmt* Clone(ASTContext &C) const; - static bool classof(const Stmt *T) { return T->getStmtClass() == BreakStmtClass; } |