From fa6bdc0d0479297eacdaaaf728b209d9f6877250 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 19 Jun 2021 07:48:28 -0700 Subject: [PATCH] Fixed lost attributes on variables/parameters --- IDEHelper/Compiler/BfPrinter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/IDEHelper/Compiler/BfPrinter.cpp b/IDEHelper/Compiler/BfPrinter.cpp index d6866e08..aa568373 100644 --- a/IDEHelper/Compiler/BfPrinter.cpp +++ b/IDEHelper/Compiler/BfPrinter.cpp @@ -1600,6 +1600,7 @@ void BfPrinter::Visit(BfVariableDeclaration* varDecl) { //Visit(varDecl->ToBase()); + VisitChild(varDecl->mAttributes); VisitChildWithProceedingSpace(varDecl->mModSpecifier); if (varDecl->mPrecedingComma != NULL)