Skip to content

Commit

Permalink
src/sage/combinat/designs/subhypergraph_search.pyx: constness fix for…
Browse files Browse the repository at this point in the history
… clang 16
  • Loading branch information
mkoeppe committed Dec 19, 2023
1 parent b002b63 commit 28559af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/combinat/designs/subhypergraph_search.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ cdef int is_subhypergraph_admissible(hypergraph h1,hypergraph * h2_trace,int n,h

return 1

cdef int cmp_128_bits(void * a, void * b) noexcept nogil:
cdef int cmp_128_bits(const void * a, const void * b) noexcept nogil:
r"""
Lexicographic order on 128-bits words
"""
Expand Down

0 comments on commit 28559af

Please sign in to comment.