* Remove stray const from State header

This commit is contained in:
Matthew Honnibal 2015-06-03 00:10:04 +02:00
parent 6c47b10a6e
commit dd0867645d
1 changed files with 1 additions and 1 deletions

View File

@ -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