From e443e1e3333c6ae3c3bc7ec0e38e76f5e9cc191c Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Sat, 10 Feb 2024 11:39:38 +0000 Subject: [PATCH] Resolve Issue #996 (u_int32_t -> uint32_t) --- src/to_gap.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/to_gap.hpp b/src/to_gap.hpp index f6c757a80..990963c20 100644 --- a/src/to_gap.hpp +++ b/src/to_gap.hpp @@ -466,7 +466,7 @@ namespace gapbind14 { // empty SET_LEN_PLIST(result, 2 * x.degree() + 1); SET_ELM_PLIST(result, 1, INTOBJ_INT(x.degree())); - for (u_int32_t i = 0; i < 2 * x.degree(); i++) { + for (uint32_t i = 0; i < 2 * x.degree(); i++) { Obj next = SUM(to_gap>()(x[i]), INTOBJ_INT(1)); SET_ELM_PLIST(result, i + 2, next); CHANGED_BAG(result);