From: Eric Christopher Date: Wed, 14 Oct 2009 21:45:49 +0000 (+0000) Subject: Fix the unused argument problem here a different way - cast to void. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7a8a05b3408cffa5458f1407d0e4623855c40689;p=oota-llvm.git Fix the unused argument problem here a different way - cast to void. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84147 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 30879b89dab..bd22be30b90 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -233,7 +233,9 @@ 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, bool, bool) { return *this; } + virtual raw_ostream &changeColor(enum Colors, bool bold = false, + bool bg = false) + { (void)bold; (void)bg; return *this; } /// Resets the colors to terminal defaults. Call this when you are done /// outputting colored text, or before program exit.