A minor change to avoid a compiler warning in visual studio 2012

This commit is contained in:
Davis King 2013-02-11 18:02:26 -05:00
parent 2f46416150
commit e20926e805
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ void convert_pascal_v1(
dataset.images.push_back(img);
}
catch (exception& e)
catch (exception& )
{
cout << "Error while processing file " << parser[i] << endl << endl;
throw;

View File

@ -227,7 +227,7 @@ void convert_pascal_xml(
dataset.images.push_back(img);
}
catch (exception& e)
catch (exception& )
{
cout << "Error while processing file " << parser[i] << endl << endl;
throw;