]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/archive/iterators/escape.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / archive / iterators / escape.hpp
index 103b31e0fef5355851c3cfa66d35b3fe3393b821..9af34ac9d160e9dd4ae46439819c7dddce7d063f 100644 (file)
@@ -9,7 +9,7 @@
 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 // escape.hpp
 
-// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 
+// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
 // Use, modification and distribution is subject to 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)
@@ -22,7 +22,7 @@
 #include <boost/iterator/iterator_adaptor.hpp>
 #include <boost/iterator/iterator_traits.hpp>
 
-namespace boost { 
+namespace boost {
 namespace archive {
 namespace iterators {
 
@@ -30,10 +30,10 @@ namespace iterators {
 // insert escapes into text
 
 template<class Derived, class Base>
-class escape : 
+class escape :
     public boost::iterator_adaptor<
-        Derived, 
-        Base, 
+        Derived,
+        Base,
         typename boost::iterator_value<Base>::type,
         single_pass_traversal_tag,
         typename boost::iterator_value<Base>::type
@@ -44,8 +44,8 @@ class escape :
     friend class boost::iterator_core_access;
 
     typedef typename boost::iterator_adaptor<
-        Derived, 
-        Base, 
+        Derived,
+        Base,
         base_value_type,
         single_pass_traversal_tag,
         base_value_type
@@ -58,7 +58,7 @@ class escape :
         m_full = true;
     }
 
-    //Access the value referred to 
+    //Access the value referred to
     reference_type dereference() const {
         if(!m_full)
             const_cast<this_t *>(this)->dereference_impl();
@@ -98,7 +98,7 @@ class escape :
     bool m_full;
     base_value_type m_current_value;
 public:
-    escape(Base base) : 
+    escape(Base base) :
         super_t(base),
         m_bnext(NULL),
         m_bend(NULL),