From 761e71eb634e3af52da6b5ee3cb0f06e96d4892a Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 18 Aug 2020 13:45:18 +0200 Subject: [PATCH] Fix build on msvc --- src/libslic3r/Point.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Point.hpp b/src/libslic3r/Point.hpp index 84010c7eb..30a1a4942 100644 --- a/src/libslic3r/Point.hpp +++ b/src/libslic3r/Point.hpp @@ -88,7 +88,7 @@ inline std::string to_string(const Vec3d &pt) { return std::string("[") + std: std::vector transform(const std::vector& points, const Transform3f& t); Pointf3s transform(const Pointf3s& points, const Transform3d& t); -template using Vec = Eigen::Matrix; +template using Vec = Eigen::Matrix; class Point : public Vec2crd {