Skip to content

Commit bf1c659

Browse files
ferdymercuryAxel-Naumann
authored andcommitted
fix missing newline also for class
1 parent 1fc5a7c commit bf1c659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/cling/lib/MetaProcessor/Display.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ void ClassPrinter::DisplayAllClasses()const
523523
const TranslationUnitDecl* const tuDecl = compiler->getASTContext().getTranslationUnitDecl();
524524
assert(tuDecl != 0 && "DisplayAllClasses, translation unit is empty");
525525

526-
fOut.Print("List of classes");
526+
fOut.Print("List of classes\n");
527527
// Could trigger deserialization of decls.
528528
Interpreter::PushTransactionRAII RAII(const_cast<Interpreter*>(fInterpreter));
529529
for (decl_iterator decl = tuDecl->decls_begin(); decl != tuDecl->decls_end(); ++decl)

0 commit comments

Comments
 (0)