fix warnings by adding more const (GH-12924)

This commit is contained in:
Inada Naoki 2019-04-23 20:39:37 +09:00 committed by GitHub
parent 574913479f
commit 09415ff0eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 23 deletions

View file

@ -11,7 +11,7 @@ extern "C" {
typedef struct {
int s_state; /* State in current DFA */
dfa *s_dfa; /* Current DFA */
const dfa *s_dfa; /* Current DFA */
struct _node *s_parent; /* Where to add next node */
} stackentry;