changeset 1471:85e9b7b31a8d

Avoid compiler warning
author Chris Cannam
date Thu, 24 May 2018 16:30:55 +0100
parents 7d9b537b6a1e
children 5d7057af0c68 7459f4c4d7c3
files rdf/RDFImporter.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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
     }