Update ASTColumnDeclaration.cpp

This commit is contained in:
alexey-milovidov 2020-11-06 22:11:57 +03:00 committed by GitHub
parent b1e75ec6f5
commit 85ecc9ea10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,10 +56,10 @@ void ASTColumnDeclaration::formatImpl(const FormatSettings & settings, FormatSta
{
settings.ostr << ' ';
FormatStateStacked typeFrame = frame;
typeFrame.indent = 0;
FormatStateStacked type_frame = frame;
type_frame.indent = 0;
type->formatImpl(settings, state, typeFrame);
type->formatImpl(settings, state, type_frame);
}
if (null_modifier)