summaryrefslogtreecommitdiff
path: root/src/program.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-07-08 16:48:49 +0800
committerAdrian Thurston <thurston@colm.net>2018-07-08 16:48:49 +0800
commitfca843990f60312d6e6c1b8774988cc624364d42 (patch)
tree5da69c25666f41f49766dcd02729db04dcd6c265 /src/program.h
parentdeb9efc408109ad13846d2d6d3b1fe0e2f62ddf2 (diff)
downloadcolm-fca843990f60312d6e6c1b8774988cc624364d42.tar.gz
separating the input from stream type
Diffstat (limited to 'src/program.h')
-rw-r--r--src/program.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/program.h b/src/program.h
index 4c5f1834..436e1bd0 100644
--- a/src/program.h
+++ b/src/program.h
@@ -105,9 +105,9 @@ struct colm_sections
long struct_input_id;
long struct_stream_id;
- void (*fsm_execute)( struct pda_run *pda_run, struct stream_impl *input_stream );
+ void (*fsm_execute)( struct pda_run *pda_run, struct input_impl *input_stream );
void (*send_named_lang_el)( struct colm_program *prg, tree_t **tree,
- struct pda_run *pda_run, struct stream_impl *input_stream );
+ struct pda_run *pda_run, struct input_impl *input_stream );
void (*init_bindings)( struct pda_run *pda_run );
void (*pop_binding)( struct pda_run *pda_run, parse_tree_t *tree );