diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2015-09-07 20:38:33 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2015-09-07 20:38:33 +0000 |
commit | 39f3cbd2357f8ff92d0a6ef8a714bf2916cf117d (patch) | |
tree | fab1290861b326bb2651f47f3d56db3cd66f606c | |
parent | - Mark BROKEN: does not build: (diff) |
Fix compiler warning. This patch has been already merged into trunk.
Obtained from: https://svn.boost.org/trac/boost/ticket/8525
Notes
Notes:
svn path=/head/; revision=396345
-rw-r--r-- | devel/boost-libs/Makefile | 2 | ||||
-rw-r--r-- | devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp | 22 |
2 files changed, 21 insertions, 3 deletions
diff --git a/devel/boost-libs/Makefile b/devel/boost-libs/Makefile index 5017b93ca37c..046ed685886a 100644 --- a/devel/boost-libs/Makefile +++ b/devel/boost-libs/Makefile @@ -4,7 +4,7 @@ PORTNAME= boost-libs COMMENT= Free portable C++ libraries (without Boost.Python) -PORTREVISION= 5 +PORTREVISION= 6 BUILD_DEPENDS+= bjam:${PORTSDIR}/devel/boost-jam diff --git a/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp b/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp index 278f284736e6..b99a44e983c9 100644 --- a/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp +++ b/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp @@ -1,5 +1,5 @@ ---- boost/archive/iterators/transform_width.hpp.orig 2013-04-28 18:07:27.000000000 +0200 -+++ boost/archive/iterators/transform_width.hpp 2014-06-09 17:27:54.615330893 +0200 +--- boost/archive/iterators/transform_width.hpp.orig 2013-04-29 01:07:27.000000000 +0900 ++++ boost/archive/iterators/transform_width.hpp 2015-08-30 04:46:06.968463000 +0900 @@ -30,6 +30,8 @@ #include <boost/iterator/iterator_adaptor.hpp> #include <boost/iterator/iterator_traits.hpp> @@ -9,3 +9,21 @@ namespace boost { namespace archive { namespace iterators { +@@ -112,6 +114,7 @@ + transform_width(BOOST_PFTO_WRAPPER(T) start) : + super_t(Base(BOOST_MAKE_PFTO_WRAPPER(static_cast< T >(start)))), + m_buffer_out_full(false), ++ m_buffer_in(0), + m_remaining_bits(0), + m_end_of_sequence(false) + {} +@@ -119,8 +122,8 @@ + transform_width(const transform_width & rhs) : + super_t(rhs.base_reference()), + m_buffer_out_full(rhs.m_buffer_out_full), +- m_remaining_bits(rhs.m_remaining_bits), + m_buffer_in(rhs.m_buffer_in), ++ m_remaining_bits(rhs.m_remaining_bits), + m_end_of_sequence(false) + {} + }; |