From a93a7e8d5e72fde260eaaf77c996a35b3a463e16 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 21 Aug 2012 17:36:32 +0000 Subject: Rename PrintingPolicy::DontRecurseInDeclContext to PrintingPolicy::TerseOutput to reflect the intention, not the implementation. llvm-svn: 162293 --- clang/unittests/AST/DeclPrinterTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/unittests/AST/DeclPrinterTest.cpp') diff --git a/clang/unittests/AST/DeclPrinterTest.cpp b/clang/unittests/AST/DeclPrinterTest.cpp index c86ec2d44aa..02924992252 100644 --- a/clang/unittests/AST/DeclPrinterTest.cpp +++ b/clang/unittests/AST/DeclPrinterTest.cpp @@ -32,7 +32,7 @@ namespace { void PrintDecl(raw_ostream &Out, const ASTContext *Context, const Decl *D) { PrintingPolicy Policy = Context->getPrintingPolicy(); - Policy.DontRecurseInDeclContext = true; + Policy.TerseOutput = true; D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false); } -- cgit v1.2.3