Fix -Wdocumentation warning. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 29 Mar 2020 18:40:42 +0000 (19:40 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 29 Mar 2020 18:51:37 +0000 (19:51 +0100)
gcc was misinterpreting the template code snippet as html.

clang/include/clang/AST/PrettyPrinter.h

index f42a6c0..21e5ca9 100644 (file)
@@ -184,7 +184,8 @@ struct PrintingPolicy {
   /// with zero parameters.
   unsigned UseVoidForZeroParams : 1;
 
-  /// Whether nested templates must be closed like a<b<c> > rather than a<b<c>>.
+  /// Whether nested templates must be closed like 'a<b<c> >' rather than
+  /// 'a<b<c>>'.
   unsigned SplitTemplateClosers : 1;
 
   /// Provide a 'terse' output.