Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Do not declare functions/methods as "cdef inline"
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed Apr 4, 2017
1 parent 8725c63 commit 94302ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/sage/libs/singular/function.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ cdef class SingularKernelFunction(SingularFunction):
pass

# the most direct function call interface
cdef inline call_function(SingularFunction self, tuple args, object R, bint signal_handler=?, object attributes=?)
cdef call_function(SingularFunction self, tuple args, object R, bint signal_handler=?, object attributes=?)
8 changes: 4 additions & 4 deletions src/sage/matroids/set_system.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ cdef class SetSystem:
cdef _relabel(self, l)
cpdef _complements(self)

cdef inline resize(self, k=*)
cdef inline _append(self, bitset_t X)
cdef inline append(self, X)
cdef inline _subset(self, long k)
cdef resize(self, k=*)
cdef _append(self, bitset_t X)
cdef append(self, X)
cdef _subset(self, long k)
cdef subset(self, k)
cpdef _get_groundset(self)

Expand Down

0 comments on commit 94302ca

Please sign in to comment.