Skip to content

Commit

Permalink
Resolve Issue #996 (u_int32_t -> uint32_t)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Feb 10, 2024
1 parent 298ed84 commit e443e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/to_gap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::vector<uint32_t>>()(x[i]), INTOBJ_INT(1));
SET_ELM_PLIST(result, i + 2, next);
CHANGED_BAG(result);
Expand Down

0 comments on commit e443e1e

Please sign in to comment.