summaryrefslogtreecommitdiff
path: root/src/base/exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/exception.h')
-rw-r--r--src/base/exception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/exception.h b/src/base/exception.h
index 704ca928e..0d1abd9e0 100644
--- a/src/base/exception.h
+++ b/src/base/exception.h
@@ -128,7 +128,7 @@ template <class T> inline void CheckArgument(bool cond, const T& arg,
template <class T> inline void CheckArgument(bool cond, const T& arg CVC4_UNUSED,
const char* tail CVC4_UNUSED) {
if(__builtin_expect( ( !cond ), false )) { \
- throw ::CVC4::IllegalArgumentException("", "", ""); \
+ throw ::CVC4::IllegalArgumentException("", "", tail); \
} \
}
template <class T> inline void CheckArgument(bool cond, const T& arg)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback