mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-30 18:52:00 +08:00
Fix: Mac os build
../src/libslic3r/SLA/SupportIslands/ExpandNeighbor.cpp:23:63: error: 'value' is unavailable: introduced in macOS 10.14
This commit is contained in:
parent
d36e16c9f1
commit
cda80cdd0b
@ -20,7 +20,7 @@ void ExpandNeighbor::process(CallStack &call_stack)
|
||||
if (circle_opt.has_value()) {
|
||||
size_t circle_index = data.result.circles.size();
|
||||
data.circle_indexes.push_back(circle_index);
|
||||
data.result.circles.emplace_back(std::move(circle_opt.value()));
|
||||
data.result.circles.push_back(circle_opt.value());
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user