Skip to content
Snippets Groups Projects
Commit 5babc858 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[GL] XmlIO; remove unused argument name in catch.

parent 8ac40b9e
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ int XmlGmlInterface::readFile(const QString &fileName) ...@@ -120,7 +120,7 @@ int XmlGmlInterface::readFile(const QString &fileName)
_geo_objs.getPointVecObj(gliName)->getIDMap(), _geo_objs.getPointVecObj(gliName)->getIDMap(),
ply_names.get()); ply_names.get());
} }
catch (std::runtime_error const& err) catch (std::runtime_error const&)
{ {
// further reading is aborted and it is necessary to clean up // further reading is aborted and it is necessary to clean up
_geo_objs.removePointVec(gliName); _geo_objs.removePointVec(gliName);
...@@ -141,7 +141,7 @@ int XmlGmlInterface::readFile(const QString &fileName) ...@@ -141,7 +141,7 @@ int XmlGmlInterface::readFile(const QString &fileName)
_geo_objs.getPointVecObj(gliName)->getIDMap(), _geo_objs.getPointVecObj(gliName)->getIDMap(),
sfc_names.get()); sfc_names.get());
} }
catch (std::runtime_error const& err) catch (std::runtime_error const&)
{ {
// further reading is aborted and it is necessary to clean up // further reading is aborted and it is necessary to clean up
_geo_objs.removePointVec(gliName); _geo_objs.removePointVec(gliName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment