Revert "ws_getopt: Disable MSVC warning C4244"

This reverts commit ac3a30f61b.

Clang build also has this warning enabled. Fixed in
3c484f278b.
This commit is contained in:
João Valverde 2021-09-17 02:40:58 +01:00
parent 3c484f278b
commit fea994855d
1 changed files with 0 additions and 6 deletions

View File

@ -34,12 +34,6 @@
#include <wsutil/ws_getopt.h>
#ifdef _MSC_VER
/* disable: "warning 4244: 'conversion' conversion from 'type1' to 'type2', possible loss of data" */
#pragma warning(disable:4244)
#endif
char *ws_optarg;
int ws_optind=1, ws_opterr=1, ws_optopt, ws_optpos, ws_optreset=0;