FS-6860 #resolve this was fixed once but was lost in the last sync

This commit is contained in:
Brian West 2014-09-26 09:00:09 -05:00
parent f5b9bef319
commit 7c89c21153
2 changed files with 10 additions and 0 deletions

View File

@ -11,6 +11,11 @@
#define ms_sleep(x) Sleep( x );
#endif
#ifdef _MSC_VER
/* warning C4706: assignment within conditional expression*/
#pragma warning(disable: 4706)
#endif
#define WS_BLOCK 1
#define WS_NOBLOCK 0

View File

@ -11,6 +11,11 @@
#define ms_sleep(x) Sleep( x );
#endif
#ifdef _MSC_VER
/* warning C4706: assignment within conditional expression*/
#pragma warning(disable: 4706)
#endif
#define WS_BLOCK 1
#define WS_NOBLOCK 0