summaryrefslogtreecommitdiff
path: root/src/util/integer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/integer.cpp')
-rw-r--r--src/util/integer.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/integer.cpp b/src/util/integer.cpp
new file mode 100644
index 000000000..8fc788eb8
--- /dev/null
+++ b/src/util/integer.cpp
@@ -0,0 +1,7 @@
+#include "util/integer.h"
+
+using namespace CVC4;
+
+std::ostream& CVC4::operator<<(std::ostream& os, const Integer& n){
+ return os << n.toString();
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback