1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-08-01 11:25:50 +00:00

Build fixes, conversion of wxString into utf-8 std::string

This commit is contained in:
Vojtech Kral
2018-09-19 10:34:21 +02:00
parent e695164451
commit 51d504c720
5 changed files with 19 additions and 6 deletions
+2 -2
View File
@@ -81,8 +81,8 @@ template<class Backend> class Zipper {
public:
Zipper(const std::string& /*zipfile_path*/) {
static_assert(Backend>::value,
"No zipper implementation provided!");
// static_assert(Backend>::value,
// "No zipper implementation provided!");
}
void next_entry(const std::string& /*fname*/) {}
+4 -1
View File
@@ -2618,7 +2618,10 @@ void modulate_extrusion_by_overlapping_layers(
(fragment_end.is_start ? &polyline.points.front() : &polyline.points.back());
}
private:
ExtrusionPathFragmentEndPointAccessor& operator=(const ExtrusionPathFragmentEndPointAccessor&) {}
ExtrusionPathFragmentEndPointAccessor& operator=(const ExtrusionPathFragmentEndPointAccessor&) {
return *this;
}
const std::vector<ExtrusionPathFragment> &m_path_fragments;
};
const coord_t search_radius = 7;