mirror of https://github.com/davisking/dlib.git
A minor change to avoid a compiler warning in visual studio 2012
This commit is contained in:
parent
2f46416150
commit
e20926e805
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue