Skip to content

Commit 6b151f1

Browse files
committed
#38936: fix reviewer suggestions
1 parent 815ec48 commit 6b151f1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/sage/groups/perm_gps/partn_ref/data_structures.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ cdef inline void OP_join(OrbitPartition *OP, int m, int n) noexcept:
141141
if m_root != n_root:
142142
OP.num_cells -= 1
143143

144-
cdef void OP_make_set(OrbitPartition *OP) noexcept
144+
cdef inline void OP_make_set(OrbitPartition *OP) noexcept
145145

146146
cdef inline int OP_merge_list_perm(OrbitPartition *OP, int *gamma) noexcept:
147147
"""

src/sage/groups/perm_gps/partn_ref/data_structures.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ cdef OP_string(OrbitPartition *OP):
8888
cdef inline void OP_make_set(OrbitPartition *OP) noexcept:
8989
"""
9090
Increase the degree of the input partition by one.
91+
9192
An error is raised in case of memory allocation failure.
9293
"""
9394
cdef int n = OP.degree

0 commit comments

Comments
 (0)