aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2017-06-20 12:28:33 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2017-06-20 12:28:33 +0000
commit916d569b8e20418936ff2056cef63068c681450e (patch)
treea654b02c27fbd48f0d7a4f8092b59078064e83a1
parent01386f7d3a359acc182df5f27ff4c0cef76ecc3b (diff)
downloadllvm-916d569b8e20418936ff2056cef63068c681450e.zip
llvm-916d569b8e20418936ff2056cef63068c681450e.tar.gz
llvm-916d569b8e20418936ff2056cef63068c681450e.tar.bz2
Fix Wdocumentation warning
llvm-svn: 305790
-rw-r--r--llvm/include/llvm/TableGen/Main.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/TableGen/Main.h b/llvm/include/llvm/TableGen/Main.h
index ca8c95c..670572d 100644
--- a/llvm/include/llvm/TableGen/Main.h
+++ b/llvm/include/llvm/TableGen/Main.h
@@ -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);