diff options
author | Adrian Thurston <thurston@complang.org> | 2010-03-21 01:26:19 +0000 |
---|---|---|
committer | Adrian Thurston <thurston@complang.org> | 2010-03-21 01:26:19 +0000 |
commit | 717d34716302962d42571ee0b59d9a116499ce06 (patch) | |
tree | c9ff39916f6986f2ed706b039ee9981b4578c3c7 /colm/bytecode.cpp | |
parent | a150841546bb030021dd6cfbe6477622090dd147 (diff) | |
download | colm-717d34716302962d42571ee0b59d9a116499ce06.tar.gz |
Some movement to camel case.
Diffstat (limited to 'colm/bytecode.cpp')
-rw-r--r-- | colm/bytecode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/colm/bytecode.cpp b/colm/bytecode.cpp index 90830cfd..3b3df156 100644 --- a/colm/bytecode.cpp +++ b/colm/bytecode.cpp @@ -320,11 +320,11 @@ Tree *parse_finish( Tree **&sp, Program *prg, Accum *accum, bool revertOn ) if ( !revertOn ) commit_full( sp, accum->pdaRun, 0 ); - Tree *tree = get_parsed_root( accum->pdaRun, accum->pdaRun->stopTarget > 0 ); + Tree *tree = getParsedRoot( accum->pdaRun, accum->pdaRun->stopTarget > 0 ); tree_upref( tree ); if ( !revertOn ) - clean_parser( sp, accum->pdaRun ); + cleanParser( sp, accum->pdaRun ); /* Indicate that this tree came out of a parser. */ tree->flags |= AF_PARSED; |