From db9ba339b118d89f082c3f7b415ec86405d0258e Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Wed, 12 Sep 2012 15:01:33 +0000 Subject: [PATCH] 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 --- include/llvm/Support/raw_ostream.h | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.34.1