Suppress the warnings about unused parameters in changeColor()
authorAlexander Potapenko <glider@google.com>
Wed, 12 Sep 2012 15:01:33 +0000 (15:01 +0000)
committerAlexander Potapenko <glider@google.com>
Wed, 12 Sep 2012 15:01:33 +0000 (15:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163714 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/raw_ostream.h

index 9913f989fc9bf170ee042421d04572a405c87537..18bd7670b677104432909ec9176beb94e0eeb102 100644 (file)
@@ -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;
   }