#
# If you are building Blat with the stock winsock.h file from Microsoft,
# you might see these warnings due to a do..while(0) statement in the
# include file.  To correct this, locate the #define FD_SET and remove the
# keywords "do" and "while(0)"; leave the rest of the definition alone.
# A do..while(0) executes only once since the conditional check for 0 will
# always be false.  It is unnecessary to use do..while(0) with their current
# and newer C/C++ compilers.
#
#
gensock.cpp(244) : warning C4127: conditional expression is constant
gensock.cpp(270) : warning C4127: conditional expression is constant
gensock.cpp(374) : warning C4127: conditional expression is constant
