From 1f64380f62cd504516b3be8bf55c3c0579b67489 Mon Sep 17 00:00:00 2001 From: akumta Date: Thu, 27 Aug 2015 10:36:15 -0700 Subject: [PATCH 1/2] Update for Boost ticket #11594 --- include/boost/mpl/string.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/string.hpp b/include/boost/mpl/string.hpp index 345918f..e789856 100644 --- a/include/boost/mpl/string.hpp +++ b/include/boost/mpl/string.hpp @@ -59,7 +59,7 @@ namespace boost { namespace mpl #define BOOST_MPL_MULTICHAR_LENGTH(c) \ (std::size_t)((c0xffffff)+(c>0xffff)+(c>0xff)+1)) - #if defined(BOOST_ENDIAN_LITTLE_BYTE) && defined(__SUNPRO_CC) + #if BOOST_ENDIAN_LITTLE_BYTE && defined(__SUNPRO_CC) #define BOOST_MPL_MULTICHAR_AT(c,i) \ (char)(0xff&((unsigned)(c)>>(8*(std::size_t)(i)))) From 7a15566169b1a84a4bf9dc32dcb87357faf91f9f Mon Sep 17 00:00:00 2001 From: Terrell Russell Date: Mon, 14 Sep 2015 15:03:50 -0400 Subject: [PATCH 2/2] fix typo this time onto develop... --- doc/src/refmanual/Iterators.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/refmanual/Iterators.rst b/doc/src/refmanual/Iterators.rst index 2be2092..ee13631 100644 --- a/doc/src/refmanual/Iterators.rst +++ b/doc/src/refmanual/Iterators.rst @@ -5,7 +5,7 @@ it possible to decouple `algorithms`__ from concrete compile-time `sequence implementations`__. Under the hood, all MPL sequence algorithms are implemented in terms of iterators. In particular, that means that they will work on any custom compile-time sequence, given that the appropriate -iterator inteface is provided. +iterator interface is provided. __ `Algorithms`_ __ `label-Sequences-Classes`_ @@ -14,6 +14,6 @@ __ `label-Sequences-Classes`_ .. More? -.. copyright:: Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams +.. copyright:: Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)