From: David Blaikie Date: Fri, 14 Feb 2014 22:12:51 +0000 (+0000) Subject: Print anonymous namespaces as instead of X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a1598ed4a90e32b0511d56bb92110524b766f67;p=clang Print anonymous namespaces as instead of git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201436 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/TypePrinter.cpp b/lib/AST/TypePrinter.cpp index 9c96aee2df..e323cad0a6 100644 --- a/lib/AST/TypePrinter.cpp +++ b/lib/AST/TypePrinter.cpp @@ -848,7 +848,7 @@ void TypePrinter::AppendScope(DeclContext *DC, raw_ostream &OS) { if (NS->getIdentifier()) OS << NS->getName() << "::"; else - OS << "::"; + OS << "::"; } else if (ClassTemplateSpecializationDecl *Spec = dyn_cast(DC)) { IncludeStrongLifetimeRAII Strong(Policy);