diff options
author | Eric Christopher <echristo@apple.com> | 2009-10-14 20:28:33 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2009-10-14 20:28:33 +0000 |
commit | 41b5adf20208f46e4b1104d6d473710fbfa61eb9 (patch) | |
tree | d3a4721092a33ae0ce3c932f009911cac8e170a3 /include/llvm/Support/raw_ostream.h | |
parent | 6c79e2c9aacba94d830f2944c8d5e4f3a4d91eb8 (diff) | |
download | external_llvm-41b5adf20208f46e4b1104d6d473710fbfa61eb9.zip external_llvm-41b5adf20208f46e4b1104d6d473710fbfa61eb9.tar.gz external_llvm-41b5adf20208f46e4b1104d6d473710fbfa61eb9.tar.bz2 |
Remove a bunch of unused arguments from functions, silencing a
warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 7827dd8..30879b8 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -233,8 +233,7 @@ public: /// @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 colors, bool bold=false, - bool bg=false) { return *this; } + virtual raw_ostream &changeColor(enum Colors, bool, bool) { return *this; } /// Resets the colors to terminal defaults. Call this when you are done /// outputting colored text, or before program exit. |