Add newline; (some?) fwd decls do not have one.

This commit is contained in:
Axel Naumann 2013-08-30 10:39:06 +02:00 committed by sftnight
parent 431a716ac3
commit 1a69f792c4

View File

@ -216,11 +216,13 @@ namespace cling {
Out << " <- ";
Out.resetColor();
for (DeclGroupRef::const_iterator I = m_DGR.begin(), E = m_DGR.end();
I != E; ++I)
I != E; ++I) {
if (*I)
(*I)->print(Out, Policy, Indent, PrintInstantiation);
else
Out << "<<NULL DECL>>";
Out << '\n';
}
}
void Transaction::dump() const {