summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2019-09-01 16:04:51 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2019-09-01 16:04:51 +0000
commitc7a8ba80c104166bd13c00bf8af31d4c4b0925d7 (patch)
tree483e8bf95021e67f8eb6a3ef9bcfaf92b4bb6dc5
parentdf19adaa71f6cf80b28be46ae612b9b7f07d5f51 (diff)
downloadbcm5719-llvm-c7a8ba80c104166bd13c00bf8af31d4c4b0925d7.tar.gz
bcm5719-llvm-c7a8ba80c104166bd13c00bf8af31d4c4b0925d7.zip
Fix MSVC unreferenced formal parameter warning. NFCI.
llvm-svn: 370615
-rw-r--r--llvm/include/llvm/Support/raw_ostream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/raw_ostream.h b/llvm/include/llvm/Support/raw_ostream.h
index 4a6b51ac609..0debc5da7a6 100644
--- a/llvm/include/llvm/Support/raw_ostream.h
+++ b/llvm/include/llvm/Support/raw_ostream.h
@@ -294,7 +294,7 @@ public:
// Enable or disable colors. Once disable_colors() is called,
// changeColor() has no effect until enable_colors() is called.
- virtual void enable_colors(bool enable) {}
+ virtual void enable_colors(bool /*enable*/) {}
//===--------------------------------------------------------------------===//
// Subclass Interface
OpenPOWER on IntegriCloud