From 686636ecba92fac27bd9155b515e0ffed07e23cc Mon Sep 17 00:00:00 2001
From: remi cresson <remi.cresson@teledetection.fr>
Date: Mon, 20 Nov 2017 17:38:18 +0000
Subject: [PATCH] FIX: change NeighborId type for UNIX (long int)

---
 include/grmNeighborhood.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/grmNeighborhood.h b/include/grmNeighborhood.h
index ae7c44e..1d68f2c 100644
--- a/include/grmNeighborhood.h
+++ b/include/grmNeighborhood.h
@@ -23,7 +23,7 @@
 #if defined(_WIN32)
 typedef __int64 NeighIDType;
 #else
-typedef long unsigned int NeighIDType;
+typedef long int NeighIDType;
 #endif
 
 enum CONNECTIVITY{FOUR = 0, EIGHT};
-- 
GitLab