summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-12 22:03:24 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-12 22:03:24 +0000
commit5d1fe7f3fe26e6ace5ba498054505fd28090cd90 (patch)
treec806975fbc7e8be72793725942a98150f927b089
parent8a00a28423e3a9d363b98cc5713af3a621b3b7e0 (diff)
minor unit test fix-ups
-rw-r--r--src/theory/theory_test_utils.h2
-rw-r--r--test/unit/theory/theory_engine_white.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/theory_test_utils.h b/src/theory/theory_test_utils.h
index a7f6e98ae..7d147f6a5 100644
--- a/src/theory/theory_test_utils.h
+++ b/src/theory/theory_test_utils.h
@@ -95,6 +95,8 @@ public:
push(EXPLANATION, n);
}
+ void setIncomplete() throw(Interrupted, AssertionException) {}
+
void clear() {
d_callHistory.clear();
}
diff --git a/test/unit/theory/theory_engine_white.h b/test/unit/theory/theory_engine_white.h
index 6adbba207..12c38d0d7 100644
--- a/test/unit/theory/theory_engine_white.h
+++ b/test/unit/theory/theory_engine_white.h
@@ -63,7 +63,7 @@ class FakeOutputChannel : public OutputChannel {
Unimplemented();
}
void setIncomplete() throw(AssertionException) {
- Unimplemented()
+ Unimplemented();
}
};/* class FakeOutputChannel */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback