workaround for data testsuite linker issue

This commit is contained in:
Guenter Obiltschnig 2012-10-14 09:51:34 +00:00
parent 4624a585dd
commit b0dff76762

View File

@ -929,7 +929,7 @@ void DataTest::testRow()
try
{
int i; i = row["a bad name"]; // to silence gcc
int i; i = row["a bad name"].convert<int>(); // to silence gcc
fail ("must fail");
}catch (NotFoundException&) {}