Remove debug output

This commit is contained in:
Alexey Milovidov 2020-06-02 02:35:44 +03:00
parent 2a0da608fd
commit 9f8c156fd2

View File

@ -24,10 +24,8 @@ void ASTNameTypePair::formatImpl(const FormatSettings & settings, FormatState &
{
std::string indent_str = settings.one_line ? "" : std::string(4 * frame.indent, ' ');
settings.ostr << '#';
settings.ostr << indent_str << backQuoteIfNeed(name) << ' ';
type->formatImpl(settings, state, frame);
settings.ostr << '#';
}
}