summaryrefslogtreecommitdiff
path: root/src/compiler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.cc')
-rw-r--r--src/compiler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler.cc b/src/compiler.cc
index 4f86c3ad..5f6333f2 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -978,12 +978,12 @@ void Compiler::initEmptyScanners()
}
}
-PdaRun *Compiler::parsePattern( Program *prg, Tree **sp, const InputLoc &loc,
+pda_run *Compiler::parsePattern( Program *prg, Tree **sp, const InputLoc &loc,
int parserId, StreamImpl *sourceStream )
{
StreamImpl *in = colm_impl_new_generic( "<internal>" );
- PdaRun *pdaRun = new PdaRun;
+ struct pda_run *pdaRun = new pda_run;
colm_pda_init( prg, pdaRun, pdaTables, parserId, 0, false, 0 );
Stream *stream = colm_stream_new_struct( prg );