- suppress compile warning in lex files.

git-svn-id: file:///svn/unbound/trunk@3895 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2016-10-20 07:46:35 +00:00
parent 4621d209ca
commit 3d62b46073
3 changed files with 294 additions and 272 deletions

View file

@ -1,3 +1,6 @@
20 October 2016: Wouter
- suppress compile warning in lex files.
19 October 2016: Wouter
- Fix #1130: whitespace in example.conf.in more consistent.

File diff suppressed because it is too large Load diff

View file

@ -9,7 +9,9 @@
*/
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
#pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <ctype.h>
#include <string.h>