Git fork

compat/regex: explicitly ignore "-Wsign-compare" warnings

Explicitly ignore "-Wsign-compare" warnings in our bundled copy of the
regcomp implementation. We don't use the macro introduced in the
preceding commit because this code does not include "git-compat-util.h"
in the first place.

Note that we already directly use "#pragma GCC diagnostic ignored" in
"regcomp.c", so it shouldn't be an issue to use it directly in the new
spot, either.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Patrick Steinhardt and committed by
Junio C Hamano
6e1d0ce4 2121a76d

+2
+2
compat/regex/regex.c
··· 17 17 License along with the GNU C Library; if not, see 18 18 <http://www.gnu.org/licenses/>. */ 19 19 20 + #pragma GCC diagnostic ignored "-Wsign-compare" 21 + 20 22 #ifdef HAVE_CONFIG_H 21 23 #include "config.h" 22 24 #endif