From 722eecfa35d444b9c39bd424b4df867c39bbfd70 Mon Sep 17 00:00:00 2001
From: James Zern <jzern@google.com>
Date: Fri, 22 Aug 2014 12:11:42 -0700
Subject: [PATCH] fdct8x8_test.cc: remove unused param warnings

Change-Id: Ic53cdb8c9f8312e7404505fcec653d5b9e9587d1
---
 test/fdct8x8_test.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/fdct8x8_test.cc b/test/fdct8x8_test.cc
index 567e5f6986..a694f0c458 100644
--- a/test/fdct8x8_test.cc
+++ b/test/fdct8x8_test.cc
@@ -39,7 +39,7 @@ typedef void (*IhtFunc)(const int16_t *in, uint8_t *out, int stride,
 typedef std::tr1::tuple<FdctFunc, IdctFunc, int> Dct8x8Param;
 typedef std::tr1::tuple<FhtFunc, IhtFunc, int> Ht8x8Param;
 
-void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
+void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int /*tx_type*/) {
   vp9_fdct8x8_c(in, out, stride);
 }
 
-- 
GitLab