Skip to content
Snippets Groups Projects
Commit 3e7c0518 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Removes // from win32/config.h

parent 84a99ebb
No related branches found
No related tags found
No related merge requests found
...@@ -9,19 +9,19 @@ ...@@ -9,19 +9,19 @@
#define USE_ALLOCA 1 #define USE_ALLOCA 1
/* Comment out the next line for floating-point code */ /* Comment out the next line for floating-point code */
//#define FIXED_POINT 1 /*#define FIXED_POINT 1 */
#define OPUS_BUILD 1 #define OPUS_BUILD 1
/* Get rid of the CELT VS compile warnings */ /* Get rid of the CELT VS compile warnings */
#if 1 #if 1
#pragma warning(disable : 4018)// signed/unsigned mismatch #pragma warning(disable : 4018)/* signed/unsigned mismatch */
#pragma warning(disable : 4244)// conversion from 'double' to 'opus_val16', possible loss of data #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 : 4267)/* conversion from 'size_t' to 'int', possible loss of data */
#pragma warning(disable : 4305)// truncation from 'double' to 'const float' #pragma warning(disable : 4305)/* truncation from 'double' to 'const float' */
#pragma warning(disable : 4311)// pointer truncation from 'char *' to 'long' #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 : 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 : 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
#endif CONFIG_H #endif CONFIG_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment