From 67526c7f4e85a23bfaa35aa621e273ed285134af Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 5 Oct 2019 20:06:30 +0000 Subject: [PATCH] Fixed #372 (build issue with 64 bit coordinates) --- src/pya/pya/pyaConvert.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pya/pya/pyaConvert.h b/src/pya/pya/pyaConvert.h index 81624491a..89c741921 100644 --- a/src/pya/pya/pyaConvert.h +++ b/src/pya/pya/pyaConvert.h @@ -142,7 +142,7 @@ struct test_type_func<__int128> { bool operator() (PyObject *rval, bool loose) { - return test_type (rval, loose); + return test_type_func () (rval, loose); } }; #endif @@ -582,7 +582,7 @@ struct c2python_func #if defined(HAVE_64BIT_COORD) template <> -struct c2python_func +struct c2python_func<__int128> { PyObject *operator() (const __int128 &c) {