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 <wiiaboo@gmail.com>2017-02-27 17:56:06 +0300
committerMark Harris <mark.hsj@gmail.com>2017-03-03 05:38:27 +0300
commit4d883288dea527bcfc7cf5ed9528a959c91707e4 (patch)
treeb76b9c80437cab81bcf469b2c955da2152d17714 /win32
parentd6d70371e85ec83307f6df0e067d353daa8e6f33 (diff)
VS2015: ignore C4244 warning in opus_compare.c
opus_compare.c defines the bitstream so we avoid changing it by ignoring the non-breaking warning instead of changing the file. Signed-off-by: Mark Harris <mark.hsj@gmail.com> Resolves https://github.com/xiph/opus/issues/21
Diffstat (limited to 'win32')
-rw-r--r--win32/VS2015/opus.vcxproj4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/VS2015/opus.vcxproj b/win32/VS2015/opus.vcxproj
index 310198a5..a128f5b0 100644
--- a/win32/VS2015/opus.vcxproj
+++ b/win32/VS2015/opus.vcxproj
@@ -348,7 +348,9 @@
<ClCompile Include="..\..\src\mlp.c" />
<ClCompile Include="..\..\src\mlp_data.c" />
<ClCompile Include="..\..\src\opus.c" />
- <ClCompile Include="..\..\src\opus_compare.c" />
+ <ClCompile Include="..\..\src\opus_compare.c">
+ <DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ </ClCompile>
<ClCompile Include="..\..\src\opus_decoder.c" />
<ClCompile Include="..\..\src\opus_encoder.c" />
<ClCompile Include="..\..\src\opus_multistream.c" />