summaryrefslogtreecommitdiff
path: root/test/unit/expr
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-12-06 11:00:33 -0600
committerGitHub <noreply@github.com>2019-12-06 11:00:33 -0600
commitc7c2d593674e3776ab0c720be1c0c759db8f9453 (patch)
treefc129a2f0453eb2944009249c4a83ba3bdbaf5a0 /test/unit/expr
parent499aa5641e2b830f60159c2ce1c791bf4d45aac1 (diff)
Add ExprManager as argument to Datatype (#3535)
Diffstat (limited to 'test/unit/expr')
-rw-r--r--test/unit/expr/expr_public.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/expr/expr_public.h b/test/unit/expr/expr_public.h
index 82cf10a9b..da9434d79 100644
--- a/test/unit/expr/expr_public.h
+++ b/test/unit/expr/expr_public.h
@@ -370,7 +370,7 @@ private:
TS_ASSERT(!null->isConst());
// more complicated "constants" exist in datatypes and arrays theories
- Datatype list("list");
+ Datatype list(d_em, "list");
DatatypeConstructor consC("cons");
consC.addArg("car", d_em->integerType());
consC.addArg("cdr", DatatypeSelfType());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback