[PATCH] D15269: Support: remove unused parameters. NFC.

Visoiu Mistrih Francis via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 6 15:21:40 PST 2015


thegameg created this revision.
thegameg added a reviewer: llvm-commits.
thegameg set the repository for this revision to rL LLVM.

Repository:
  rL LLVM

http://reviews.llvm.org/D15269

Files:
  include/llvm/Support/ErrorOr.h

Index: include/llvm/Support/ErrorOr.h
===================================================================
--- include/llvm/Support/ErrorOr.h
+++ include/llvm/Support/ErrorOr.h
@@ -212,7 +212,7 @@
   }
 
   template <class T1, class T2>
-  static bool compareThisIfSameType(const T1 &a, const T2 &b) {
+  static bool compareThisIfSameType(const T1 &, const T2 &) {
     return false;
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15269.42019.patch
Type: text/x-patch
Size: 390 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151206/e1d467ca/attachment.bin>


More information about the llvm-commits mailing list