summaryrefslogtreecommitdiff
path: root/src/smt/managed_ostreams.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-15 13:04:55 -0700
committerGitHub <noreply@github.com>2021-04-15 20:04:55 +0000
commit77bca094a140b35341257f125a55212ff0108250 (patch)
tree1d3369b9be5fc4c3e8cb279ae5ea662e59cbcb3e /src/smt/managed_ostreams.cpp
parent63647b1d79df6f287ea6599958b16fce44b8271d (diff)
Rename occurrences of CVC4 to CVC5. (#6351)
This renames everything but GitHub links and build system related macros. Switching the build system to cvc5 will be the last step in the renaming process.
Diffstat (limited to 'src/smt/managed_ostreams.cpp')
-rw-r--r--src/smt/managed_ostreams.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/smt/managed_ostreams.cpp b/src/smt/managed_ostreams.cpp
index b0f9aef21..31bcc5f2f 100644
--- a/src/smt/managed_ostreams.cpp
+++ b/src/smt/managed_ostreams.cpp
@@ -77,7 +77,7 @@ void ManagedDumpOStream::initialize(std::ostream* outStream) {
dumpGetStream.apply(outStream);
#else /* CVC5_DUMPING */
throw OptionException(
- "The dumping feature was disabled in this build of CVC4.");
+ "The dumping feature was disabled in this build of cvc5.");
#endif /* CVC5_DUMPING */
}
@@ -123,9 +123,9 @@ ManagedDiagnosticOutputChannel::~ManagedDiagnosticOutputChannel() {
if(Warning.getStreamPointer() == getManagedOstream()){
Warning.setStream(&null_os);
}
- if (CVC4Message.getStreamPointer() == getManagedOstream())
+ if (CVC5Message.getStreamPointer() == getManagedOstream())
{
- CVC4Message.setStream(&null_os);
+ CVC5Message.setStream(&null_os);
}
if(Notice.getStreamPointer() == getManagedOstream()){
Notice.setStream(&null_os);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback