Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorRicardo Constantino (:RiCON) <wiiaboo@gmail.com>2016-07-26 22:35:42 +0300
committerRalph Giles <giles@thaumas.net>2016-07-27 21:48:46 +0300
commiteca752f1008044ff6ff266a1a2433c1c794b7cbf (patch)
tree2209c8bed93b11fa34b3f390f4b4b5cfc0df5cad /win32
parent899348f766a18685700d2cd364008364139d3fa8 (diff)
VS2015: Ignore warning 4146 in celt/kiss_fft.c.
Warning 4146 is "unary minus operator applied to unsigned type, result still unsigned" Signed-off-by: Ralph Giles <giles@mozilla.com>
Diffstat (limited to 'win32')
-rw-r--r--win32/VS2015/opus.vcxproj5
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/VS2015/opus.vcxproj b/win32/VS2015/opus.vcxproj
index fa31eff2..d9aaa037 100644
--- a/win32/VS2015/opus.vcxproj
+++ b/win32/VS2015/opus.vcxproj
@@ -897,7 +897,10 @@
<ClCompile Include="..\..\celt\entcode.c" />
<ClCompile Include="..\..\celt\entdec.c" />
<ClCompile Include="..\..\celt\entenc.c" />
- <ClCompile Include="..\..\celt\kiss_fft.c" />
+ <ClCompile Include="..\..\celt\kiss_fft.c">
+ <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='DebugDLL_fixed|Win32'">4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='DebugDLL_fixed|x64'">4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ </ClCompile>
<ClCompile Include="..\..\celt\laplace.c" />
<ClCompile Include="..\..\celt\mathops.c" />
<ClCompile Include="..\..\celt\mdct.c" />