summaryrefslogtreecommitdiff
path: root/src/base/check.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/check.h')
-rw-r--r--src/base/check.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/base/check.h b/src/base/check.h
index 70c5c9016..1e46ea85c 100644
--- a/src/base/check.h
+++ b/src/base/check.h
@@ -75,7 +75,7 @@
#define CVC4_FALLTHROUGH
#endif
-namespace CVC4 {
+namespace CVC5 {
// Implementation notes:
// To understand FatalStream and OStreamVoider, it is useful to understand
@@ -206,11 +206,11 @@ class AssertArgumentException : public Exception
#define InternalError() CVC4_FATAL() << "Internal error detected"
#define IllegalArgument(arg, msg...) \
- throw ::CVC4::IllegalArgumentException( \
+ throw ::CVC5::IllegalArgumentException( \
"", \
#arg, \
__PRETTY_FUNCTION__, \
- ::CVC4::IllegalArgumentException::formatVariadic(msg).c_str());
+ ::CVC5::IllegalArgumentException::formatVariadic(msg).c_str());
// This cannot use check argument directly as this forces
// CheckArgument to use a va_list. This is unsupported in Swig.
#define PrettyCheckArgument(cond, arg, msg...) \
@@ -218,11 +218,11 @@ class AssertArgumentException : public Exception
{ \
if (__builtin_expect((!(cond)), false)) \
{ \
- throw ::CVC4::IllegalArgumentException( \
+ throw ::CVC5::IllegalArgumentException( \
#cond, \
#arg, \
__PRETTY_FUNCTION__, \
- ::CVC4::IllegalArgumentException::formatVariadic(msg).c_str()); \
+ ::CVC5::IllegalArgumentException::formatVariadic(msg).c_str()); \
} \
} while (0)
#define AlwaysAssertArgument(cond, arg, msg...) \
@@ -230,7 +230,7 @@ class AssertArgumentException : public Exception
{ \
if (__builtin_expect((!(cond)), false)) \
{ \
- throw ::CVC4::AssertArgumentException( \
+ throw ::CVC5::AssertArgumentException( \
#cond, #arg, __PRETTY_FUNCTION__, __FILE__, __LINE__, ##msg); \
} \
} while (0)
@@ -245,6 +245,6 @@ class AssertArgumentException : public Exception
cond, arg, msg...) /*__builtin_expect( ( cond ), true )*/
#endif /* CVC4_ASSERTIONS */
-} // namespace CVC4
+} // namespace CVC5
#endif /* CVC4__CHECK_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback