summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
diff options
context:
space:
mode:
authorTim King <taking@google.com>2016-11-18 15:17:31 -0800
committerTim King <taking@google.com>2016-11-18 15:28:24 -0800
commit044e20567fa7252be33aa0108b2f795b8181fb04 (patch)
tree1577f0cf1ad50aafc748628f681fc3acf7c6b4e3 /src/theory/theory_engine.h
parentc1f42884d4a277c2dadb876c967d0d7097b7b5f0 (diff)
Removing some throw specifiers from OutputChannel. Fixes bug 716.
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index fc98c6e3a..3273b3d19 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -279,10 +279,9 @@ class TheoryEngine {
ProofRule rule,
bool removable = false,
bool preprocess = false,
- bool sendAtoms = false)
- throw(TypeCheckingExceptionPrivate, AssertionException, UnsafeInterruptException);
+ bool sendAtoms = false);
- theory::LemmaStatus splitLemma(TNode lemma, bool removable = false) throw(TypeCheckingExceptionPrivate, AssertionException, UnsafeInterruptException);
+ theory::LemmaStatus splitLemma(TNode lemma, bool removable = false);
void demandRestart() throw(TypeCheckingExceptionPrivate, AssertionException, UnsafeInterruptException) {
NodeManager* curr = NodeManager::currentNM();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback