mirror of https://github.com/explosion/spaCy.git
* Remove stray const from State header
This commit is contained in:
parent
6c47b10a6e
commit
dd0867645d
|
@ -16,7 +16,7 @@ cdef struct State:
|
|||
int ents_len
|
||||
|
||||
|
||||
cdef int add_dep(const State *s, const int head, const int child, const int label) except -1
|
||||
cdef int add_dep(State *s, const int head, const int child, const int label) except -1
|
||||
|
||||
|
||||
cdef int pop_stack(State *s) except -1
|
||||
|
|
Loading…
Reference in New Issue