summaryrefslogtreecommitdiff
path: root/test/unit/expr/expr_manager_public.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-04-23 05:15:56 +0000
committerMorgan Deters <mdeters@gmail.com>2011-04-23 05:15:56 +0000
commit57b8c4c8581d2d3ffcf3d3a1bb228271cb4d074a (patch)
tree1c1781cc83118e4bbd2ad6939b16734c30a69f1a /test/unit/expr/expr_manager_public.h
parent673d0e86b91094a58433c3ca71591fb0a0c60f84 (diff)
* reviewed BooleanSimplification, added documentation & unit test
* work around a lexer ambiguity in CVC grammar * add support for tracing antlr parser/lexer * add parsing support for more language features * initial parameterized types parsing work to support Andy's work
Diffstat (limited to 'test/unit/expr/expr_manager_public.h')
-rw-r--r--test/unit/expr/expr_manager_public.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/expr/expr_manager_public.h b/test/unit/expr/expr_manager_public.h
index 3b1e96084..e37c197ab 100644
--- a/test/unit/expr/expr_manager_public.h
+++ b/test/unit/expr/expr_manager_public.h
@@ -46,7 +46,7 @@ private:
worklist.pop_back();
if( current.getKind() == kind ) {
for( unsigned int i = 0; i < current.getNumChildren(); ++i ) {
- worklist.push_back( current.getChild(i) );
+ worklist.push_back( current[i] );
}
} else {
childrenFound++;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback