]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/archive/iterators/insert_linebreaks.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / archive / iterators / insert_linebreaks.hpp
index 2504b030db1e8b4cb4fe1e0f1c6d8c757969d7aa..c75ea8415c50403d9a3f1de1b784b9779ef88d3f 100644 (file)
@@ -9,7 +9,7 @@
 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 // insert_linebreaks.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)
@@ -26,18 +26,18 @@ namespace std{ using ::memcpy; }
 #include <boost/iterator/iterator_adaptor.hpp>
 #include <boost/iterator/iterator_traits.hpp>
 
-namespace boost { 
+namespace boost {
 namespace archive {
 namespace iterators {
 
 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 // insert line break every N characters
 template<
-    class Base, 
-    int N, 
+    class Base,
+    int N,
     class CharType = typename boost::iterator_value<Base>::type
 >
-class insert_linebreaks : 
+class insert_linebreaks :
     public iterator_adaptor<
         insert_linebreaks<Base, N, CharType>,
         Base,
@@ -86,7 +86,7 @@ public:
         m_count(0)
     {}
     // intel 7.1 doesn't like default copy constructor
-    insert_linebreaks(const insert_linebreaks & rhs) : 
+    insert_linebreaks(const insert_linebreaks & rhs) :
         super_t(rhs.base_reference()),
         m_count(rhs.m_count)
     {}