Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 885344 Details for
Bug 918510
media-gfx/superslicer-2.5.59.8: version bump (fixes: src/slic3r/GUI/ScriptExecutor.cpp:13:10: fatal error: boost/filesystem/string_file.hpp: No such file or directory)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Superslicer 2.5.59.8 fix for gnu17 compilation error
superslicer-2.5.59.8-fix-compilation-error-gnu17.patch (text/plain), 812 bytes, created by
Egor
on 2024-02-18 13:22:22 UTC
(
hide
)
Description:
Superslicer 2.5.59.8 fix for gnu17 compilation error
Filename:
MIME Type:
Creator:
Egor
Created:
2024-02-18 13:22:22 UTC
Size:
812 bytes
patch
obsolete
># https://github.com/prusa3d/PrusaSlicer/commit/4aa7366fafb7a3f91cc68d4a808f5195a4aa3dcf >diff --git a/src/libslic3r/MeshBoolean.cpp b/src/libslic3r/MeshBoolean.cpp >index d76bf468c7f..22232573953 100644 >--- a/src/libslic3r/MeshBoolean.cpp >+++ b/src/libslic3r/MeshBoolean.cpp >@@ -152,12 +152,12 @@ indexed_triangle_set cgal_to_indexed_triangle_set(const _Mesh &cgalmesh) > const auto &vertices = cgalmesh.vertices(); > int vsize = int(vertices.size()); > >- for (auto &vi : vertices) { >+ for (const auto &vi : vertices) { > auto &v = cgalmesh.point(vi); // Don't ask... > its.vertices.emplace_back(to_vec3f(v)); > } > >- for (auto &face : faces) { >+ for (const auto &face : faces) { > auto vtc = cgalmesh.vertices_around_face(cgalmesh.halfedge(face)); > > int i = 0;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 918510
:
881557
|
881558
|
885342
|
885343
| 885344 |
885345
|
885346
|
886707