From 5babc858c2dc430f9a4c6ad05cd91db977ced841 Mon Sep 17 00:00:00 2001
From: "Dmitry Yu. Naumov" <github@naumov.de>
Date: Fri, 14 Sep 2018 15:17:26 +0200
Subject: [PATCH] [GL] XmlIO; remove unused argument name in catch.

---
 GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp b/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp
index 31b59e35967..f900282ac0f 100644
--- a/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp
+++ b/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp
@@ -120,7 +120,7 @@ int XmlGmlInterface::readFile(const QString &fileName)
                               _geo_objs.getPointVecObj(gliName)->getIDMap(),
                               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
                 _geo_objs.removePointVec(gliName);
@@ -141,7 +141,7 @@ int XmlGmlInterface::readFile(const QString &fileName)
                              _geo_objs.getPointVecObj(gliName)->getIDMap(),
                              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
                 _geo_objs.removePointVec(gliName);
-- 
GitLab