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 4a0bd4e51..4d6604a63 100644
--- a/src/expr/emptyset.cpp
+++ b/src/expr/emptyset.cpp
@@ -21,7 +21,7 @@
#include "expr/type_node.h"
-namespace CVC5 {
+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); }
-} // namespace CVC5
+} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback