From e101f10ef0d9b1ac5ecc252d8c29ad7620d54aa7 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 13 Mar 2018 02:12:16 +0100 Subject: [PATCH] Fix header --- spacy/syntax/nn_parser.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/syntax/nn_parser.pxd b/spacy/syntax/nn_parser.pxd index 56615c6f1..9a1734d1c 100644 --- a/spacy/syntax/nn_parser.pxd +++ b/spacy/syntax/nn_parser.pxd @@ -15,7 +15,7 @@ cdef class Parser: cdef readonly object cfg cdef public object _multitasks - cdef void _parseC(self, StateC* state, + cdef void _parseC(self, StateC** states, int nr_task, const float* feat_weights, const float* bias, const float* hW, const float* hb, int nr_class, int nr_hidden, int nr_feat, int nr_piece) nogil