diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:49:16 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:49:16 +0000 |
commit | a2ea78f1320c08018e28f82f8fb543fa7b4bb52d (patch) | |
tree | c2e574913e40f3f8498d6670e6a7548b02e6e423 /include/llvm/Support/raw_ostream.h | |
parent | 376a8a773e38fdcd9102a40e08ab1e0661d645d9 (diff) | |
download | external_llvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.zip external_llvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.tar.gz external_llvm-a2ea78f1320c08018e28f82f8fb543fa7b4bb52d.tar.bz2 |
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.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 5de749a..9913f98 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. |