aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/AST/Stmt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h
index e5cc11163f..a73bd2e56e 100644
--- a/include/clang/AST/Stmt.h
+++ b/include/clang/AST/Stmt.h
@@ -189,7 +189,7 @@ public:
SourceLocation LB, SourceLocation RB)
: Stmt(CompoundStmtClass), Body(StmtStart, StmtStart+NumStmts),
LBracLoc(LB), RBracLoc(RB) {}
-
+
bool body_empty() const { return Body.empty(); }
typedef llvm::SmallVector<Stmt*, 16>::iterator body_iterator;
@@ -216,6 +216,10 @@ public:
virtual SourceRange getSourceRange() const {
return SourceRange(LBracLoc, RBracLoc);
}
+
+ SourceLocation getLBracLoc() { return LBracLoc; }
+ SourceLocation getRBracLoc() { return RBracLoc; }
+
static bool classof(const Stmt *T) {
return T->getStmtClass() == CompoundStmtClass;
}