diff rdf/RDFImporter.cpp @ 1471:85e9b7b31a8d

Avoid compiler warning
author Chris Cannam
date Thu, 24 May 2018 16:30:55 +0100
parents b9faee02afa5
children 70e172e6cc59
line wrap: on
line diff
--- a/rdf/RDFImporter.cpp	Thu May 17 14:25:58 2018 +0100
+++ b/rdf/RDFImporter.cpp	Thu May 24 16:30:55 2018 +0100
@@ -818,7 +818,7 @@
         store = BasicStore::load(QUrl(url));
         Triple t = store->matchOnce(Triple());
         if (t != Triple()) haveRDF = true;
-    } catch (std::exception &e) {
+    } catch (std::exception &) {
         // nothing; haveRDF will be false so the next bit catches it
     }