We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc8321e + a8e14d5 commit a1472aeCopy full SHA for a1472ae
src/crangler/scanner.l
@@ -54,6 +54,16 @@ PreprocessorDirective {PreprocessorStart}[^\r\n]*
54
static int isatty(int) { return 0; }
55
#endif
56
57
+#if defined _MSC_VER
58
+// signed/unsigned mismatch
59
+#pragma warning(disable:4365)
60
+// macro re-definition: flex conditonally defines INT32_MAX et al. and thus
61
+// they are set before library headers get to define them
62
+#pragma warning(disable:4005)
63
+#endif
64
+
65
+#include <util/pragma_wsign_compare.def>
66
+#include <util/pragma_wnull_conversion.def>
67
#include <util/pragma_wdeprecated_register.def>
68
69
#include <set>
0 commit comments