summaryrefslogtreecommitdiff
path: root/src/printer/smt2/smt2_printer.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2017-06-21 14:21:45 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2017-06-21 14:23:56 -0500
commitf997af30b7d5dd30e01a72b00ddf3859c0049fdc (patch)
tree2e9264fc7624e9016212b886597c39cc6d7951a9 /src/printer/smt2/smt2_printer.h
parent6fc4709d5791f26be69cbb4b215db04da7a559b3 (diff)
Properly handle subtypes in smt2 printer.
Diffstat (limited to 'src/printer/smt2/smt2_printer.h')
-rw-r--r--src/printer/smt2/smt2_printer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printer/smt2/smt2_printer.h b/src/printer/smt2/smt2_printer.h
index d73f11b59..eeba0b12a 100644
--- a/src/printer/smt2/smt2_printer.h
+++ b/src/printer/smt2/smt2_printer.h
@@ -38,7 +38,7 @@ enum Variant {
class Smt2Printer : public CVC4::Printer {
Variant d_variant;
- void toStream(std::ostream& out, TNode n, int toDepth, bool types) const throw();
+ void toStream(std::ostream& out, TNode n, int toDepth, bool types, TypeNode nt) const throw();
void toStream(std::ostream& out, const Model& m, const Command* c) const throw();
public:
Smt2Printer(Variant variant = no_variant) : d_variant(variant) { }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback