From fe0723dc9d45acfa4511961b208b7817b09297ec Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sun, 29 Mar 2020 19:40:42 +0100 Subject: [PATCH] Fix -Wdocumentation warning. NFC. gcc was misinterpreting the template code snippet as html. --- clang/include/clang/AST/PrettyPrinter.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/include/clang/AST/PrettyPrinter.h b/clang/include/clang/AST/PrettyPrinter.h index f42a6c0..21e5ca9 100644 --- a/clang/include/clang/AST/PrettyPrinter.h +++ b/clang/include/clang/AST/PrettyPrinter.h @@ -184,7 +184,8 @@ struct PrintingPolicy { /// with zero parameters. unsigned UseVoidForZeroParams : 1; - /// Whether nested templates must be closed like a > rather than a>. + /// Whether nested templates must be closed like 'a >' rather than + /// 'a>'. unsigned SplitTemplateClosers : 1; /// Provide a 'terse' output. -- 2.7.4