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:
authorMark Walker <markwal@hotmail.com>2016-03-14 09:51:35 +0300
committerMark Walker <markwal@hotmail.com>2016-03-14 09:51:35 +0300
commit92e1f1011ace95a4db8984c3a6cbcfdcb6bf6e45 (patch)
tree954d51b01131acc15571a775f40539ef9f48dee5 /xs/src/libslic3r/Point.hpp
parent1a09ae81db06602050ae83620268efa33ed14da1 (diff)
Fix issue with undefined BOOST_VERSION
if BOOST_VERSION < 106000 always succeeds because BOOST_VERSION is undefined. In order to avoid the code for new boost, we need <boost/version.hpp>
Diffstat (limited to 'xs/src/libslic3r/Point.hpp')
-rw-r--r--xs/src/libslic3r/Point.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/Point.hpp b/xs/src/libslic3r/Point.hpp
index 6e057aae3..dbd1219b9 100644
--- a/xs/src/libslic3r/Point.hpp
+++ b/xs/src/libslic3r/Point.hpp
@@ -114,6 +114,7 @@ class Pointf3 : public Pointf
}
// start Boost
+#include <boost/version.hpp>
#include <boost/polygon/polygon.hpp>
namespace boost { namespace polygon {
template <>