From: Hans Wennborg Date: Sat, 4 Jun 2011 16:00:19 +0000 (+0000) Subject: Cast unused parameter to void. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=1777299737b0775093db44dab4781c6aedd5659c Cast unused parameter to void. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132641 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 70fc6999530..2eccc11aa46 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -1166,6 +1166,7 @@ namespace llvm { for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I) cast(*I); #endif + (void)Length; return reinterpret_cast(Vals); }