From 950058765d7f2f13a4718916ea352fd78e67d192 Mon Sep 17 00:00:00 2001 From: Paul Wilkins <paulwilkins@google.com> Date: Mon, 7 Oct 2013 02:25:10 -0700 Subject: [PATCH] Fix MSVC warning. A new set of MSVC warnings were introduced by change I3f36d3f7cd8d15195a6e2fafd1777cdaf9ecb847 In particular MSVC does not like:- typedef const int16_t subpel_kernel[SUBPEL_TAPS]; struct subpix_fn_table { const subpel_kernel *filter_x; const subpel_kernel *filter_y; }; causes new warning in MSVC. warning C4114: same type qualifier used more than once Change-Id: Iae596fd13aadf36169faf00c68eabe9a32a9b156 --- vp9/common/vp9_filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/common/vp9_filter.h b/vp9/common/vp9_filter.h index 676b274b94..36d19a76db 100644 --- a/vp9/common/vp9_filter.h +++ b/vp9/common/vp9_filter.h @@ -27,7 +27,7 @@ typedef enum { SWITCHABLE = 4 /* should be the last one */ } INTERPOLATIONFILTERTYPE; -typedef const int16_t subpel_kernel[SUBPEL_TAPS]; +typedef int16_t subpel_kernel[SUBPEL_TAPS]; struct subpix_fn_table { const subpel_kernel *filter_x; -- GitLab