summaryrefslogtreecommitdiff
path: root/include/llvm/Support/raw_ostream.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-08-22 23:49:16 +0000
committerTed Kremenek <kremenek@apple.com>2012-08-22 23:49:16 +0000
commita2ea78f1320c08018e28f82f8fb543fa7b4bb52d (patch)
treec2e574913e40f3f8498d6670e6a7548b02e6e423 /include/llvm/Support/raw_ostream.h
parent376a8a773e38fdcd9102a40e08ab1e0661d645d9 (diff)
downloadllvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.tar.gz
llvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.tar.bz2
llvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.tar.xz
Fix an assortment of doxygen comment mistakes found by -Wdocumentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r--include/llvm/Support/raw_ostream.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
index 5de749aeae..9913f989fc 100644
--- a/include/llvm/Support/raw_ostream.h
+++ b/include/llvm/Support/raw_ostream.h
@@ -210,13 +210,16 @@ public:
/// Changes the foreground color of text that will be output from this point
/// forward.
- /// @param colors ANSI color to use, the special SAVEDCOLOR can be used to
+ /// @param Color ANSI color to use, the special SAVEDCOLOR can be used to
/// change only the bold attribute, and keep colors untouched
- /// @param bold bold/brighter text, default false
- /// @param bg if true change the background, default: change foreground
+ /// @param Bold bold/brighter text, default false
+ /// @param BG if true change the background, default: change foreground
/// @returns itself so it can be used within << invocations
- virtual raw_ostream &changeColor(enum Colors, bool = false, bool = false) {
- return *this; }
+ virtual raw_ostream &changeColor(enum Colors Color,
+ bool Bold = false,
+ bool BG = false) {
+ return *this;
+ }
/// Resets the colors to terminal defaults. Call this when you are done
/// outputting colored text, or before program exit.