Add file I forgot to commit in previous commit.

llvm-svn: 66820
This commit is contained in:
Ted Kremenek 2009-03-12 18:42:19 +00:00
parent 92c2af76c4
commit 77158a4b99
1 changed files with 2 additions and 2 deletions

View File

@ -225,8 +225,8 @@ public:
return ImplementationControl(DeclImplementation);
}
virtual Stmt *getBody() const { return Body; }
void setBody(Stmt *B) { Body = B; }
virtual CompoundStmt *getBody() const { return (CompoundStmt*) Body; }
void setBody(CompoundStmt *B) { Body = (Stmt*) B; }
// Implement isa/cast/dyncast/etc.
static bool classof(const Decl *D) { return D->getKind() == ObjCMethod; }