summaryrefslogtreecommitdiff
path: root/src/smt_util/lemma_input_channel.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-01-04 13:09:39 -0800
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-01-04 15:09:39 -0600
commit256d4093ab6ac3b792c6f1f11131124d1ae6b069 (patch)
treee4034cfb0cd8147d9c670fe150804146bec429d2 /src/smt_util/lemma_input_channel.h
parenta73f9d55155356b90089b00e1a7cc49107a4c587 (diff)
Removing miscellaneous throw specifiers. (#1474)
Diffstat (limited to 'src/smt_util/lemma_input_channel.h')
-rw-r--r--src/smt_util/lemma_input_channel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/smt_util/lemma_input_channel.h b/src/smt_util/lemma_input_channel.h
index af2ac6442..f141111b1 100644
--- a/src/smt_util/lemma_input_channel.h
+++ b/src/smt_util/lemma_input_channel.h
@@ -26,10 +26,10 @@ namespace CVC4 {
class CVC4_PUBLIC LemmaInputChannel {
public:
- virtual ~LemmaInputChannel() throw() { }
+ virtual ~LemmaInputChannel() {}
- virtual bool hasNewLemma() = 0;
- virtual Expr getNewLemma() = 0;
+ virtual bool hasNewLemma() = 0;
+ virtual Expr getNewLemma() = 0;
};/* class LemmaOutputChannel */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback