summaryrefslogtreecommitdiff
path: root/include/llvm/Support/raw_ostream.h
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2012-09-12 15:01:33 +0000
committerAlexander Potapenko <glider@google.com>2012-09-12 15:01:33 +0000
commitdb9ba339b118d89f082c3f7b415ec86405d0258e (patch)
treeb96bc1280fdb0dfd8781f2ed4fd4367a5c83ff39 /include/llvm/Support/raw_ostream.h
parent9d760ae5c6bc1d1482e2824efcf9cb11db1cc16f (diff)
downloadllvm-db9ba339b118d89f082c3f7b415ec86405d0258e.tar.gz
llvm-db9ba339b118d89f082c3f7b415ec86405d0258e.tar.bz2
llvm-db9ba339b118d89f082c3f7b415ec86405d0258e.tar.xz
Suppress the warnings about unused parameters in changeColor()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r--include/llvm/Support/raw_ostream.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
index 9913f989fc..18bd7670b6 100644
--- a/include/llvm/Support/raw_ostream.h
+++ b/include/llvm/Support/raw_ostream.h
@@ -218,6 +218,9 @@ public:
virtual raw_ostream &changeColor(enum Colors Color,
bool Bold = false,
bool BG = false) {
+ (void)Color;
+ (void)Bold;
+ (void)BG;
return *this;
}