From 160d708ecdaccd3e5097672a4f1b42083e378f7c Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 18 Mar 2019 11:27:27 +0100 Subject: [PATCH] Typo fix.... sorry guys --- src/libslic3r/SLA/SLASupportTree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/SLA/SLASupportTree.cpp b/src/libslic3r/SLA/SLASupportTree.cpp index a5fcaf3f3..650dfe2e7 100644 --- a/src/libslic3r/SLA/SLASupportTree.cpp +++ b/src/libslic3r/SLA/SLASupportTree.cpp @@ -758,7 +758,7 @@ public: template inline const Pillar& pillar(T id) const { static_assert(std::is_integral::value, "Invalid index type"); assert(id >= 0 && id < m_pillars.size() && - id < std::numerix_limits::max()); + id < std::numeric_limits::max()); return m_pillars[size_t(id)]; }