summaryrefslogtreecommitdiff
path: root/src/expr/kind.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/kind.h')
-rw-r--r--src/expr/kind.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/expr/kind.h b/src/expr/kind.h
index 49321b47f..5ac02ca7c 100644
--- a/src/expr/kind.h
+++ b/src/expr/kind.h
@@ -51,15 +51,16 @@ enum Kind {
};/* enum Kind */
-}/* CVC4 namespace */
-
-inline std::ostream& operator<<(std::ostream&, const CVC4::Kind&) CVC4_PUBLIC;
-inline std::ostream& operator<<(std::ostream& out, const CVC4::Kind& k) {
+inline std::ostream& operator<<(std::ostream&, CVC4::Kind) CVC4_PUBLIC;
+inline std::ostream& operator<<(std::ostream& out, CVC4::Kind k) {
using namespace CVC4;
switch(k) {
+
+ /* special cases */
case UNDEFINED_KIND: out << "UNDEFINED_KIND"; break;
case NULL_EXPR: out << "NULL"; break;
+
case EQUAL: out << "EQUAL"; break;
case ITE: out << "ITE"; break;
case SKOLEM: out << "SKOLEM"; break;
@@ -88,4 +89,6 @@ inline std::ostream& operator<<(std::ostream& out, const CVC4::Kind& k) {
return out;
}
+}/* CVC4 namespace */
+
#endif /* __CVC4__KIND_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback