Commit e20926e8 authored by Davis King's avatar Davis King

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

parent 2f464161
...@@ -164,7 +164,7 @@ void convert_pascal_v1( ...@@ -164,7 +164,7 @@ void convert_pascal_v1(
dataset.images.push_back(img); dataset.images.push_back(img);
} }
catch (exception& e) catch (exception& )
{ {
cout << "Error while processing file " << parser[i] << endl << endl; cout << "Error while processing file " << parser[i] << endl << endl;
throw; throw;
......
...@@ -227,7 +227,7 @@ void convert_pascal_xml( ...@@ -227,7 +227,7 @@ void convert_pascal_xml(
dataset.images.push_back(img); dataset.images.push_back(img);
} }
catch (exception& e) catch (exception& )
{ {
cout << "Error while processing file " << parser[i] << endl << endl; cout << "Error while processing file " << parser[i] << endl << endl;
throw; throw;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment