]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/archive/iterators/ostream_iterator.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / archive / iterators / ostream_iterator.hpp
index 49a9b99034b72d871654c12410227a620d0b344a..80b5d1d45669ad874d69c941d5c2e388b19d1edf 100644 (file)
@@ -9,7 +9,7 @@
 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 // ostream_iterator.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)
 #include <ostream>
 #include <boost/iterator/iterator_facade.hpp>
 
-namespace boost { 
+namespace boost {
 namespace archive {
 namespace iterators {
 
 // given a type, make an input iterator based on a pointer to that type
 template<class Elem>
-class ostream_iterator :  
+class ostream_iterator :
     public boost::iterator_facade<
         ostream_iterator<Elem>,
         Elem,
@@ -43,7 +43,7 @@ class ostream_iterator :
     typedef Elem char_type;
     typedef std::basic_ostream<char_type> ostream_type;
 
-    //emulate the behavior of std::ostream 
+    //emulate the behavior of std::ostream
     ostream_iterator & dereference() const {
         return const_cast<ostream_iterator &>(*this);
     }