summaryrefslogtreecommitdiff
path: root/src/fsmcodegen.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-05-15 12:22:51 -0400
committerAdrian Thurston <thurston@complang.org>2015-05-15 12:22:51 -0400
commitc98d2e9b47091c12deb747e111f7f1cd05a1f937 (patch)
tree5decdd801287425e2b27c285422e8c9da3b15415 /src/fsmcodegen.cc
parentb05674c0aa0a63ae984fc8f8204bdb09d5e1dd9e (diff)
downloadcolm-c98d2e9b47091c12deb747e111f7f1cd05a1f937.tar.gz
naming convention improvements
Diffstat (limited to 'src/fsmcodegen.cc')
-rw-r--r--src/fsmcodegen.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fsmcodegen.cc b/src/fsmcodegen.cc
index 10d8ef91..e7d44cb3 100644
--- a/src/fsmcodegen.cc
+++ b/src/fsmcodegen.cc
@@ -848,7 +848,7 @@ void FsmCodeGen::writeExec()
setLabelsNeeded();
out <<
- "static void fsm_execute( struct pda_run *pdaRun, StreamImpl *inputStream )\n"
+ "static void fsm_execute( struct pda_run *pdaRun, struct stream_impl *inputStream )\n"
"{\n"
" " << BLOCK_START() << " = pdaRun->p;\n"
"/*_resume:*/\n";
@@ -901,7 +901,7 @@ void FsmCodeGen::writeCode()
* should use the preprocessor to make these go away. */
out <<
"static void sendNamedLangEl( struct colm_program *prg, Tree **tree,\n"
- " struct pda_run *pdaRun, StreamImpl *inputStream ) { }\n"
+ " struct pda_run *pdaRun, struct stream_impl *inputStream ) { }\n"
"static void initBindings( struct pda_run *pdaRun ) {}\n"
"static void popBinding( struct pda_run *pdaRun, ParseTree *tree ) {}\n"
"\n"