summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2011-08-29 00:36:39 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2011-08-29 00:36:39 -0400
commit3e7c0518533a65cbdbb138edda23b0e1e64320a7 (patch)
tree6fd0305f7ea815390b0c79c3cc873f245993f8a2
parent84a99ebb92f15d1524fc818149c53f4b67c32eb1 (diff)
downloadopus-3e7c0518533a65cbdbb138edda23b0e1e64320a7.tar.gz
Removes // from win32/config.h
-rw-r--r--win32/config.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/win32/config.h b/win32/config.h
index ccdb8d73..330f917c 100644
--- a/win32/config.h
+++ b/win32/config.h
@@ -9,19 +9,19 @@
#define USE_ALLOCA 1
/* Comment out the next line for floating-point code */
-//#define FIXED_POINT 1
+/*#define FIXED_POINT 1 */
#define OPUS_BUILD 1
/* 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.
+#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
#endif CONFIG_H