aboutsummaryrefslogtreecommitdiff
path: root/xdiff
diff options
context:
space:
mode:
authorDavid Aguilar <davvid@gmail.com>2025-02-11 22:04:13 -0800
committerJunio C Hamano <gitster@pobox.com>2025-02-12 09:41:15 -0800
commit9d16f8958467be0162441820d56eb7697453e120 (patch)
tree3dd5d3773009629ffcb38bd638b3f5235a46e6ab /xdiff
parent388218fac77d0405a5083cd4b4ee20f6694609c3 (diff)
downloadgit-9d16f8958467be0162441820d56eb7697453e120.tar.xz
xdiff: move sign comparison warning guard into each file
Allow each file to fix the warnings guarded by the macro separately by moving the definition from the shared xinclude.h into each file that needs it. xmerge.c and xprepare.c do not contain any signed vs. unsigned comparisons so the definition was not included in these files. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'xdiff')
-rw-r--r--xdiff/xemit.c2
-rw-r--r--xdiff/xhistogram.c2
-rw-r--r--xdiff/xinclude.h2
-rw-r--r--xdiff/xpatience.c3
-rw-r--r--xdiff/xutils.c2
5 files changed, 9 insertions, 2 deletions
diff --git a/xdiff/xemit.c b/xdiff/xemit.c
index 75f0fe4986..2b394a4806 100644
--- a/xdiff/xemit.c
+++ b/xdiff/xemit.c
@@ -20,6 +20,8 @@
*
*/
+#define DISABLE_SIGN_COMPARE_WARNINGS
+
#include "xinclude.h"
static long xdl_get_rec(xdfile_t *xdf, long ri, char const **rec) {
diff --git a/xdiff/xhistogram.c b/xdiff/xhistogram.c
index 16a8fe2f3f..3d2b190fa6 100644
--- a/xdiff/xhistogram.c
+++ b/xdiff/xhistogram.c
@@ -41,6 +41,8 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#define DISABLE_SIGN_COMPARE_WARNINGS
+
#include "xinclude.h"
#define MAX_PTR UINT_MAX
diff --git a/xdiff/xinclude.h b/xdiff/xinclude.h
index 7e56542526..a4285ac0eb 100644
--- a/xdiff/xinclude.h
+++ b/xdiff/xinclude.h
@@ -23,8 +23,6 @@
#if !defined(XINCLUDE_H)
#define XINCLUDE_H
-#define DISABLE_SIGN_COMPARE_WARNINGS
-
#include "git-compat-util.h"
#include "xmacros.h"
#include "xdiff.h"
diff --git a/xdiff/xpatience.c b/xdiff/xpatience.c
index a2d8955537..b0ba421b28 100644
--- a/xdiff/xpatience.c
+++ b/xdiff/xpatience.c
@@ -19,6 +19,9 @@
* Davide Libenzi <davidel@xmailserver.org>
*
*/
+
+#define DISABLE_SIGN_COMPARE_WARNINGS
+
#include "xinclude.h"
/*
diff --git a/xdiff/xutils.c b/xdiff/xutils.c
index 9e36f24875..169edff5ab 100644
--- a/xdiff/xutils.c
+++ b/xdiff/xutils.c
@@ -20,6 +20,8 @@
*
*/
+#define DISABLE_SIGN_COMPARE_WARNINGS
+
#include "xinclude.h"