FS-6860 #resolve this was fixed once but was lost in the last sync
This commit is contained in:
parent
f5b9bef319
commit
7c89c21153
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue