aboutsummaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2011-08-30 19:50:41 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2011-08-30 20:16:23 -0400
commitd6335abedc33283bbebf04db166b312771f64da5 (patch)
treeab2eb17585c193716bf6dcdef88213c7c244e04d /win32
parent17a29c256749fa7f44930ce3648339ace9fd2506 (diff)
downloadlibopus-d6335abedc33283bbebf04db166b312771f64da5.tar.gz
Adds many syntactically unnecessary parentheses to silence GCC -Wparentheses.
The object code is unchanged (except ectest). Also reenables -Wparentheses, -Wsign-compare, and the MSVC warnings.
Diffstat (limited to 'win32')
-rw-r--r--win32/config.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/win32/config.h b/win32/config.h
index 330f917c..528ff8e3 100644
--- a/win32/config.h
+++ b/win32/config.h
@@ -15,12 +15,6 @@
/* Get rid of the CELT VS compile warnings */
#if 1
-#pragma warning(disable : 4018)/* signed/unsigned mismatch */
-#pragma warning(disable : 4244)/* conversion from 'double' to 'opus_val16', possible loss of data */
-#pragma warning(disable : 4267)/* conversion from 'size_t' to 'int', possible loss of data */
-#pragma warning(disable : 4305)/* truncation from 'double' to 'const float' */
-#pragma warning(disable : 4311)/* pointer truncation from 'char *' to 'long' */
-#pragma warning(disable : 4554)/* check operator precedence for possible error; use parentheses to clarify precedence */
#pragma warning(disable : 4996)/* This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. */
#endif