summaryrefslogtreecommitdiff
path: root/src/expr/emptyset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/emptyset.cpp')
-rw-r--r--src/expr/emptyset.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/emptyset.cpp b/src/expr/emptyset.cpp
index 97a986054..4a0bd4e51 100644
--- a/src/expr/emptyset.cpp
+++ b/src/expr/emptyset.cpp
@@ -21,7 +21,7 @@
#include "expr/type_node.h"
-namespace CVC4 {
+namespace CVC5 {
std::ostream& operator<<(std::ostream& out, const EmptySet& asa) {
return out << "emptyset(" << asa.getType() << ')';
@@ -64,4 +64,4 @@ bool EmptySet::operator<=(const EmptySet& es) const
bool EmptySet::operator>(const EmptySet& es) const { return !(*this <= es); }
bool EmptySet::operator>=(const EmptySet& es) const { return !(*this < es); }
-}/* CVC4 namespace */
+} // namespace CVC5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback