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
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-11-08 13:23:08 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-08 13:23:08 +0300
commit443e900e07df82e41a5ba939d0ff4ef75956e7b9 (patch)
tree1416ad35d6359ccf21f8ab79c5ce7304ecd94146 /xs
parent5aacc6b0153b13453e1b63323b5f9c7ec5d81662 (diff)
Fixed compilation on Strawberry
Diffstat (limited to 'xs')
-rw-r--r--xs/src/libslic3r/BridgeDetector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/BridgeDetector.cpp b/xs/src/libslic3r/BridgeDetector.cpp
index d5250d03b..7e54bcf69 100644
--- a/xs/src/libslic3r/BridgeDetector.cpp
+++ b/xs/src/libslic3r/BridgeDetector.cpp
@@ -15,7 +15,7 @@ BridgeDetector::BridgeDetector(
lower_slices(_lower_slices),
spacing(_spacing)
{
- this->expolygons_owned.push_back(std::move(_expolygon));
+ this->expolygons_owned.push_back(STDMOVE(_expolygon));
initialize();
}