From: Alexander Potapenko Date: Wed, 12 Sep 2012 15:01:33 +0000 (+0000) Subject: Suppress the warnings about unused parameters in changeColor() X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=db9ba339b118d89f082c3f7b415ec86405d0258e;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 9913f989fc9..18bd7670b67 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; }