[llvm] r305790 - Fix Wdocumentation warning

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 20 05:28:33 PDT 2017


Author: rksimon
Date: Tue Jun 20 07:28:33 2017
New Revision: 305790

URL: http://llvm.org/viewvc/llvm-project?rev=305790&view=rev
Log:
Fix Wdocumentation warning

Modified:
    llvm/trunk/include/llvm/TableGen/Main.h

Modified: llvm/trunk/include/llvm/TableGen/Main.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/TableGen/Main.h?rev=305790&r1=305789&r2=305790&view=diff
==============================================================================
--- llvm/trunk/include/llvm/TableGen/Main.h (original)
+++ llvm/trunk/include/llvm/TableGen/Main.h Tue Jun 20 07:28:33 2017
@@ -19,8 +19,8 @@ namespace llvm {
 class raw_ostream;
 class RecordKeeper;
 
-/// \brief Perform the action using Records, and write output to OS.
-/// \returns true on error, false otherwise
+/// Perform the action using Records, and write output to OS.
+/// Returns true on error, false otherwise.
 using TableGenMainFn = bool (raw_ostream &OS, RecordKeeper &Records);
 
 int TableGenMain(char *argv0, TableGenMainFn *MainFn);




More information about the llvm-commits mailing list