summaryrefslogtreecommitdiff
path: root/src/expr/expr_template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/expr_template.cpp')
-rw-r--r--src/expr/expr_template.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/expr_template.cpp b/src/expr/expr_template.cpp
index 132d4bfaa..226736e8f 100644
--- a/src/expr/expr_template.cpp
+++ b/src/expr/expr_template.cpp
@@ -181,8 +181,8 @@ private:
if(n.getMetaKind() == metakind::CONSTANT) {
if(n.getKind() == kind::EMPTYSET) {
Type type = d_from->exportType(
- n.getConst< ::CVC4::EmptySet>().getType(), d_to, d_vmap);
- return d_to->mkConst(::CVC4::EmptySet(type));
+ n.getConst< ::CVC4::EmptySet>().getType().toType(), d_to, d_vmap);
+ return d_to->mkConst(::CVC4::EmptySet(TypeNode::fromType(type)));
}
return exportConstant(n, NodeManager::fromExprManager(d_to), d_vmap);
} else if(n.getMetaKind() == metakind::NULLARY_OPERATOR ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback