Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-10-31 18:22:36 +0300
committerbubnikv <bubnikv@gmail.com>2018-10-31 18:22:36 +0300
commitfd1c5dd2181a03641ae99218b4178fecba2ca95e (patch)
tree24b72b5c8d2e4fa070625dc25896d848876b9857 /src/slic3r/Config
parent66e97aa4eb6ce2efbaccccfbe8d561e93874fe55 (diff)
WIP: SL1 profiles, SL1 in wizard, switching between FFF / SLA
Diffstat (limited to 'src/slic3r/Config')
-rw-r--r--src/slic3r/Config/Snapshot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/Config/Snapshot.cpp b/src/slic3r/Config/Snapshot.cpp
index 704fbcfa1..e92c829c0 100644
--- a/src/slic3r/Config/Snapshot.cpp
+++ b/src/slic3r/Config/Snapshot.cpp
@@ -406,7 +406,7 @@ const Snapshot& SnapshotDB::take_snapshot(const AppConfig &app_config, Snapshot:
cfg.version.min_slic3r_version = it->min_slic3r_version;
cfg.version.max_slic3r_version = it->max_slic3r_version;
}
- } catch (const std::runtime_error &err) {
+ } catch (const std::runtime_error & /* err */) {
}
snapshot.vendor_configs.emplace_back(std::move(cfg));
}
@@ -521,7 +521,7 @@ SnapshotDB& SnapshotDB::singleton()
// Update the min / max slic3r versions compatible with the configurations stored inside the snapshots
// based on the min / max slic3r versions defined by the vendor specific config indices.
instance.update_slic3r_versions(index_db);
- } catch (std::exception &ex) {
+ } catch (std::exception & /* ex */) {
}
}
return instance;