From 86ad5adf36ea8233edce18d2299d9d2e0be567e4 Mon Sep 17 00:00:00 2001 From: Xun Li Date: Fri, 20 Dec 2024 11:55:37 -0700 Subject: [PATCH] fix uint64_t issue --- libgeoda | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libgeoda b/libgeoda index 910ef62..6ae3fa3 160000 --- a/libgeoda +++ b/libgeoda @@ -1 +1 @@ -Subproject commit 910ef62ac05a4a32e1e3d9a5ba60eb9916dc5862 +Subproject commit 6ae3fa34078ed5a498d75280a1862f08c36bea57 diff --git a/setup.py b/setup.py index fe4d05a..7f34e34 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,8 @@ '-w', '-std=c++14', '-fvisibility=hidden', - '-D__USE_PTHREAD__' # use pthread!!! on *nix + '-D__USE_PTHREAD__', # use pthread!!! on *nix + '-Wno-enum-constexpr-conversion' # disable enumeration warnings ] ###########################################################