aboutsummaryrefslogtreecommitdiff
path: root/ports/pcl/boost-1.73.patch
diff options
context:
space:
mode:
authorJack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>2020-08-18 15:20:22 -0700
committerGitHub <noreply@github.com>2020-08-18 15:20:22 -0700
commitb54f17e39477515a24b8c0fcd76af5cf7e45ef3a (patch)
tree3e7c17cc1628d3c55d86a3476be961e952cc4a41 /ports/pcl/boost-1.73.patch
parent272269583c80a4ba626d405e79a88a2ddd6d950d (diff)
downloadvcpkg-b54f17e39477515a24b8c0fcd76af5cf7e45ef3a.tar.gz
vcpkg-b54f17e39477515a24b8c0fcd76af5cf7e45ef3a.zip
[pcl] Update to 1.10.0 (#10042)
Diffstat (limited to 'ports/pcl/boost-1.73.patch')
-rw-r--r--ports/pcl/boost-1.73.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/ports/pcl/boost-1.73.patch b/ports/pcl/boost-1.73.patch
deleted file mode 100644
index d634d84bb..000000000
--- a/ports/pcl/boost-1.73.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-diff --git a/common/include/pcl/PCLPointCloud2.h b/common/include/pcl/PCLPointCloud2.h
-index 6a00c1f..5d4ac1c 100644
---- a/common/include/pcl/PCLPointCloud2.h
-+++ b/common/include/pcl/PCLPointCloud2.h
-@@ -8,7 +8,7 @@
- #include <string>
- #include <vector>
- #include <ostream>
--#include <boost/detail/endian.hpp>
-+#include <boost/predef/other/endian.h>
-
- // Include the correct Header path here
- #include <pcl/PCLHeader.h>
-@@ -23,9 +23,9 @@ namespace pcl
- is_bigendian (false), point_step (0), row_step (0),
- data (), is_dense (false)
- {
--#if defined(BOOST_BIG_ENDIAN)
-+#if BOOST_ENDIAN_BIG_BYTE
- is_bigendian = true;
--#elif defined(BOOST_LITTLE_ENDIAN)
-+#elif BOOST_ENDIAN_LITTLE_BYTE
- is_bigendian = false;
- #else
- #error "unable to determine system endianness"
-diff --git a/io/include/pcl/io/ply/byte_order.h b/io/include/pcl/io/ply/byte_order.h
-index 2af95d0..8328015 100644
---- a/io/include/pcl/io/ply/byte_order.h
-+++ b/io/include/pcl/io/ply/byte_order.h
-@@ -40,7 +40,7 @@
- #ifndef PCL_IO_PLY_BYTE_ORDER_H
- #define PCL_IO_PLY_BYTE_ORDER_H
-
--#include <boost/detail/endian.hpp>
-+#include <boost/predef/other/endian.h>
-
- namespace pcl
- {
-@@ -58,9 +58,9 @@ namespace pcl
- {
- little_endian_byte_order,
- big_endian_byte_order,
--#if defined(BOOST_BIG_ENDIAN)
-+#if BOOST_ENDIAN_BIG_BYTE
- host_byte_order = big_endian_byte_order,
--#elif defined(BOOST_LITTLE_ENDIAN)
-+#elif BOOST_ENDIAN_LITTLE_BYTE
- host_byte_order = little_endian_byte_order,
- #else
- #error "unable to determine system endianness"