summaryrefslogtreecommitdiff
path: root/test/unit/expr/symbol_table_black.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/expr/symbol_table_black.h')
-rw-r--r--test/unit/expr/symbol_table_black.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/unit/expr/symbol_table_black.h b/test/unit/expr/symbol_table_black.h
index 2f6f88c27..99799544f 100644
--- a/test/unit/expr/symbol_table_black.h
+++ b/test/unit/expr/symbol_table_black.h
@@ -44,7 +44,7 @@ private:
{
d_exprManager = new ExprManager;
}
- catch (Exception e)
+ catch (Exception& e)
{
cerr << "Exception during setUp():" << endl << e;
throw;
@@ -55,7 +55,9 @@ private:
{
try {
delete d_exprManager;
- } catch(Exception e) {
+ }
+ catch (Exception& e)
+ {
cerr << "Exception during tearDown():" << endl << e;
throw;
}
@@ -160,6 +162,6 @@ private:
void testBadPop() {
SymbolTable symtab;
// TODO: What kind of exception gets thrown here?
- TS_ASSERT_THROWS( symtab.popScope(), ScopeException );
+ TS_ASSERT_THROWS(symtab.popScope(), ScopeException&);
}
};/* class SymbolTableBlack */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback