summaryrefslogtreecommitdiff
path: root/src/options/language.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/language.cpp')
-rw-r--r--src/options/language.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options/language.cpp b/src/options/language.cpp
index abd0d9124..bf8f5d7bf 100644
--- a/src/options/language.cpp
+++ b/src/options/language.cpp
@@ -21,7 +21,7 @@
#include "base/exception.h"
#include "options/option_exception.h"
-namespace CVC4 {
+namespace CVC5 {
namespace language {
/** define the end points of smt2 languages */
@@ -83,7 +83,7 @@ InputLanguage toInputLanguage(OutputLanguage language) {
std::stringstream ss;
ss << "Cannot map output language `" << language
<< "' to an input language.";
- throw CVC4::Exception(ss.str());
+ throw CVC5::Exception(ss.str());
}
}/* switch(language) */
}/* toInputLanguage() */
@@ -170,5 +170,5 @@ InputLanguage toInputLanguage(std::string language) {
throw OptionException(std::string("unknown input language `" + language + "'"));
}/* toInputLanguage() */
-}/* CVC4::language namespace */
-}/* CVC4 namespace */
+} // namespace language
+} // namespace CVC5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback