summaryrefslogtreecommitdiff
path: root/src/util/uninterpreted_constant.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-02 21:40:02 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-02 21:40:02 +0000
commit4cb370f81f0dcc1db56f981f46a7fb16f705d844 (patch)
tree5a2ae47cfd093228c430b7cba288188576fa05b5 /src/util/uninterpreted_constant.h
parent410688d57a92d5ff3505ad70c4573955e4075475 (diff)
array-store-all class
Diffstat (limited to 'src/util/uninterpreted_constant.h')
-rw-r--r--src/util/uninterpreted_constant.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/uninterpreted_constant.h b/src/util/uninterpreted_constant.h
index a6e7a7256..418b8d333 100644
--- a/src/util/uninterpreted_constant.h
+++ b/src/util/uninterpreted_constant.h
@@ -31,7 +31,7 @@ class CVC4_PUBLIC UninterpretedConstant {
public:
- UninterpretedConstant(Type type, Integer index) throw() :
+ UninterpretedConstant(Type type, Integer index) throw(IllegalArgumentException) :
d_type(type),
d_index(index) {
CheckArgument(type.isSort(), type, "uninterpreted constants can only be created for uninterpreted sorts, not `%s'", type.toString().c_str());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback