$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r71839 - in sandbox/coerce/boost: . coerce coerce/detail
From: vexocide_at_[hidden]
Date: 2011-05-09 07:22:03
Author: vexocide
Date: 2011-05-09 07:22:02 EDT (Mon, 09 May 2011)
New Revision: 71839
URL: http://svn.boost.org/trac/boost/changeset/71839
Log:
Fixed LICENSE_1_0.txt paths
Text files modified: 
   sandbox/coerce/boost/coerce.hpp              |     2 +-                                      
   sandbox/coerce/boost/coerce/detail/karma.hpp |     7 ++++---                                 
   sandbox/coerce/boost/coerce/detail/qi.hpp    |     2 +-                                      
   sandbox/coerce/boost/coerce/reserve.hpp      |     2 +-                                      
   4 files changed, 7 insertions(+), 6 deletions(-)
Modified: sandbox/coerce/boost/coerce.hpp
==============================================================================
--- sandbox/coerce/boost/coerce.hpp	(original)
+++ sandbox/coerce/boost/coerce.hpp	2011-05-09 07:22:02 EDT (Mon, 09 May 2011)
@@ -1,7 +1,7 @@
 //              Copyright Jeroen Habraken 2011.
 //
 // Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file ../../../LICENSE_1_0.txt or copy at
+//    (See accompanying file ../LICENSE_1_0.txt or copy at
 //          http://www.boost.org/LICENSE_1_0.txt)
 
 #ifndef BOOST_COERCE_HPP
Modified: sandbox/coerce/boost/coerce/detail/karma.hpp
==============================================================================
--- sandbox/coerce/boost/coerce/detail/karma.hpp	(original)
+++ sandbox/coerce/boost/coerce/detail/karma.hpp	2011-05-09 07:22:02 EDT (Mon, 09 May 2011)
@@ -1,7 +1,7 @@
 //           Copyright Jeroen Habraken 2010 - 2011.
 //
 // Distributed under the Boost Software License, Version 1.0.
-//  (See accompanying file ../../LICENSE_1_0.txt or copy at
+// (See accompanying file ../../../LICENSE_1_0.txt or copy at
 //          http://www.boost.org/LICENSE_1_0.txt)
 
 #ifndef BOOST_COERCE_DETAIL_KARMA_HPP
@@ -19,6 +19,8 @@
 #include <boost/spirit/home/karma/operator/optional.hpp>
 #include <boost/spirit/include/version.hpp>
 
+#include <iterator>  // std::back_inserter
+
 namespace boost { namespace coerce { namespace detail {
 
     struct karma {
@@ -26,8 +28,7 @@
         static inline bool
         call(Target & target, Source const & source) {
             detail::call_reserve(
-                target,
-                traits::reserve_size<Source>::call(source));
+                target, traits::reserve_size<Source>::call(source));
 
             bool result = spirit::karma::generate(
                 std::back_inserter(target),
Modified: sandbox/coerce/boost/coerce/detail/qi.hpp
==============================================================================
--- sandbox/coerce/boost/coerce/detail/qi.hpp	(original)
+++ sandbox/coerce/boost/coerce/detail/qi.hpp	2011-05-09 07:22:02 EDT (Mon, 09 May 2011)
@@ -1,7 +1,7 @@
 //           Copyright Jeroen Habraken 2010 - 2011.
 //
 // Distributed under the Boost Software License, Version 1.0.
-//  (See accompanying file ../../LICENSE_1_0.txt or copy at
+// (See accompanying file ../../../LICENSE_1_0.txt or copy at
 //          http://www.boost.org/LICENSE_1_0.txt)
 
 #ifndef BOOST_COERCE_DETAIL_QI_HPP
Modified: sandbox/coerce/boost/coerce/reserve.hpp
==============================================================================
--- sandbox/coerce/boost/coerce/reserve.hpp	(original)
+++ sandbox/coerce/boost/coerce/reserve.hpp	2011-05-09 07:22:02 EDT (Mon, 09 May 2011)
@@ -1,7 +1,7 @@
 //           Copyright Jeroen Habraken 2010 - 2011.
 //
 // Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file ../../../LICENSE_1_0.txt or copy at
+//  (See accompanying file ../../LICENSE_1_0.txt or copy at
 //          http://www.boost.org/LICENSE_1_0.txt)
 
 #ifndef BOOST_COERCE_RESERVE_HPP