summaryrefslogtreecommitdiff
path: root/src/util/ostream_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/ostream_util.cpp')
-rw-r--r--src/util/ostream_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/ostream_util.cpp b/src/util/ostream_util.cpp
index 37fa0d892..8a3b2b47b 100644
--- a/src/util/ostream_util.cpp
+++ b/src/util/ostream_util.cpp
@@ -17,7 +17,7 @@
#include <ostream>
-namespace CVC5 {
+namespace cvc5 {
StreamFormatScope::StreamFormatScope(std::ostream& out)
: d_out(out), d_format_flags(out.flags()), d_precision(out.precision())
@@ -30,4 +30,4 @@ StreamFormatScope::~StreamFormatScope()
d_out.flags(d_format_flags);
}
-} // namespace CVC5
+} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback