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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-04-11 18:34:15 +0300
committerbubnikv <bubnikv@gmail.com>2016-04-11 18:34:15 +0300
commit3ba625da226577e1330c4ff87b3918cdbdece56e (patch)
treee9f78b7bf759e43d54ec28d567dcd3670136f6f1 /xs/src/perlglue.cpp
parented83ff37f86cadc1d00ca6e5aec41ad8791e2ef6 (diff)
Revert incorrect checkins.
Diffstat (limited to 'xs/src/perlglue.cpp')
-rw-r--r--xs/src/perlglue.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/xs/src/perlglue.cpp b/xs/src/perlglue.cpp
index 6dda82a1b..d3f6c48e5 100644
--- a/xs/src/perlglue.cpp
+++ b/xs/src/perlglue.cpp
@@ -1,6 +1,5 @@
#ifdef SLIC3RXS
#include <xsinit.h>
-#include <assert.h>
namespace Slic3r {
@@ -394,7 +393,6 @@ void from_SV(SV* poly_sv, MultiPoint* THIS)
void from_SV_check(SV* poly_sv, MultiPoint* THIS)
{
if (sv_isobject(poly_sv) && (SvTYPE(SvRV(poly_sv)) == SVt_PVMG)) {
-// (MultiPoint*)SvIV((SV*)SvRV( poly_sv ))
*THIS = *(MultiPoint*)SvIV((SV*)SvRV( poly_sv ));
} else {
from_SV(poly_sv, THIS);