summaryrefslogtreecommitdiff
path: root/src/expr/array_store_all.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/array_store_all.h')
-rw-r--r--src/expr/array_store_all.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/expr/array_store_all.h b/src/expr/array_store_all.h
index 308794f48..6b265d740 100644
--- a/src/expr/array_store_all.h
+++ b/src/expr/array_store_all.h
@@ -40,20 +40,20 @@ class CVC4_PUBLIC ArrayStoreAll {
* not a constant of type `type`.
*/
ArrayStoreAll(const ArrayType& type, const Expr& expr);
- ~ArrayStoreAll() throw();
+ ~ArrayStoreAll();
ArrayStoreAll(const ArrayStoreAll& other);
ArrayStoreAll& operator=(const ArrayStoreAll& other);
- const ArrayType& getType() const throw();
- const Expr& getExpr() const throw();
+ const ArrayType& getType() const;
+ const Expr& getExpr() const;
- bool operator==(const ArrayStoreAll& asa) const throw();
- bool operator!=(const ArrayStoreAll& asa) const throw();
- bool operator<(const ArrayStoreAll& asa) const throw();
- bool operator<=(const ArrayStoreAll& asa) const throw();
- bool operator>(const ArrayStoreAll& asa) const throw();
- bool operator>=(const ArrayStoreAll& asa) const throw();
+ bool operator==(const ArrayStoreAll& asa) const;
+ bool operator!=(const ArrayStoreAll& asa) const;
+ bool operator<(const ArrayStoreAll& asa) const;
+ bool operator<=(const ArrayStoreAll& asa) const;
+ bool operator>(const ArrayStoreAll& asa) const;
+ bool operator>=(const ArrayStoreAll& asa) const;
private:
std::unique_ptr<ArrayType> d_type;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback