================
@@ -1022,7 +1045,17 @@ void DeclPrinter::VisitVarDecl(VarDecl *D) {
              ? D->getIdentifier()->deuglifiedName()
              : D->getName();
 
-  printDeclType(T, Name);
+  if (!Policy.SuppressTagKeyword && Policy.SuppressScope &&
+      !Policy.SuppressUnwrittenScope) {
+    AddPrefix(Policy, T, Out);
+    bool OldTagKeyword = Policy.SuppressTagKeyword;
+    bool OldSupressScope = Policy.SuppressScope;
+    printDeclType(T, Name);
+    Policy.SuppressTagKeyword = OldTagKeyword;
+    Policy.SuppressScope = OldSupressScope;
----------------
AaronBallman wrote:

Same here.

https://github.com/llvm/llvm-project/pull/84014
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to