More const-ness goodness.

llvm-svn: 57420
This commit is contained in:
Argyrios Kyrtzidis 2008-10-12 18:45:56 +00:00
parent bb5d04fc82
commit 9103317346
1 changed files with 2 additions and 1 deletions

View File

@ -316,7 +316,8 @@ public:
}
}
ScopedDecl *getDeclChain() const { return DeclChain; }
const ScopedDecl *getDeclChain() const { return DeclChain; }
ScopedDecl *getDeclChain() { return DeclChain; }
void setDeclChain(ScopedDecl *D) { DeclChain = D; }
static bool classof(const Decl *D) {