Make Decl::dump const.

llvm-svn: 82878
This commit is contained in:
Anders Carlsson 2009-09-26 21:58:53 +00:00
parent 37d8015dc1
commit 46f87dcad4
2 changed files with 7 additions and 7 deletions

View File

@ -456,13 +456,13 @@ public:
/// Destroy - Call destructors and release memory.
virtual void Destroy(ASTContext& C);
void print(llvm::raw_ostream &Out, unsigned Indentation = 0);
void print(llvm::raw_ostream &Out, unsigned Indentation = 0) const;
void print(llvm::raw_ostream &Out, const PrintingPolicy &Policy,
unsigned Indentation = 0);
unsigned Indentation = 0) const;
static void printGroup(Decl** Begin, unsigned NumDecls,
llvm::raw_ostream &Out, const PrintingPolicy &Policy,
unsigned Indentation = 0);
void dump();
void dump() const;
private:
const Attr *getAttrsImpl() const;

View File

@ -77,14 +77,14 @@ namespace {
};
}
void Decl::print(llvm::raw_ostream &Out, unsigned Indentation) {
void Decl::print(llvm::raw_ostream &Out, unsigned Indentation) const {
print(Out, getASTContext().PrintingPolicy, Indentation);
}
void Decl::print(llvm::raw_ostream &Out, const PrintingPolicy &Policy,
unsigned Indentation) {
unsigned Indentation) const {
DeclPrinter Printer(Out, getASTContext(), Policy, Indentation);
Printer.Visit(this);
Printer.Visit(const_cast<Decl*>(this));
}
static QualType GetBaseType(QualType T) {
@ -149,7 +149,7 @@ void Decl::printGroup(Decl** Begin, unsigned NumDecls,
}
}
void Decl::dump() {
void Decl::dump() const {
print(llvm::errs());
}