summaryrefslogtreecommitdiff
path: root/src/expr/expr_template.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-01-17 12:16:17 -0800
committerGitHub <noreply@github.com>2018-01-17 12:16:17 -0800
commit248b977790b429ebfd22481462193e3e35c57ce2 (patch)
tree9a59a408d113d6a3347f013c2492291769406e82 /src/expr/expr_template.h
parent4538f5fe95758f2507c191ab39175491f24e6f67 (diff)
Removes yet more throw specifiers. Updating the documentation as needed. (#1518)
Diffstat (limited to 'src/expr/expr_template.h')
-rw-r--r--src/expr/expr_template.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/expr/expr_template.h b/src/expr/expr_template.h
index 9656781a8..cc9949c30 100644
--- a/src/expr/expr_template.h
+++ b/src/expr/expr_template.h
@@ -409,7 +409,7 @@ public:
* @param check whether we should check the type as we compute it
* (default: false)
*/
- Type getType(bool check = false) const throw (TypeCheckingException);
+ Type getType(bool check = false) const;
/**
* Substitute "replacement" in for "e".
@@ -521,13 +521,13 @@ private:
* Returns the actual internal node.
* @return the internal node
*/
- NodeTemplate<true> getNode() const throw();
+ NodeTemplate<true> getNode() const;
/**
* Returns the actual internal node as a TNode.
* @return the internal node
*/
- NodeTemplate<false> getTNode() const throw();
+ NodeTemplate<false> getTNode() const;
// Friend to access the actual internal expr information and private methods
friend class SmtEngine;
@@ -545,7 +545,7 @@ private:
${getConst_instantiations}
-#line 557 "${template}"
+#line 549 "${template}"
inline size_t ExprHashFunction::operator()(CVC4::Expr e) const {
return (size_t) e.getId();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback