Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Sep 2015 20:38:34 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396345 - in head/devel/boost-libs: . files
Message-ID:  <201509072038.t87KcYLm060795@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hrs
Date: Mon Sep  7 20:38:33 2015
New Revision: 396345
URL: https://svnweb.freebsd.org/changeset/ports/396345

Log:
  Fix compiler warning.  This patch has been already merged into trunk.
  
  Obtained from:	https://svn.boost.org/trac/boost/ticket/8525

Modified:
  head/devel/boost-libs/Makefile
  head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp

Modified: head/devel/boost-libs/Makefile
==============================================================================
--- head/devel/boost-libs/Makefile	Mon Sep  7 19:47:00 2015	(r396344)
+++ head/devel/boost-libs/Makefile	Mon Sep  7 20:38:33 2015	(r396345)
@@ -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
 

Modified: head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp
==============================================================================
--- head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp	Mon Sep  7 19:47:00 2015	(r396344)
+++ head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp	Mon Sep  7 20:38:33 2015	(r396345)
@@ -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)
+     {}
+ };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509072038.t87KcYLm060795>