]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/iterator/example/counting_iterator_example.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / iterator / example / counting_iterator_example.cpp
index c7d8add913bc8a9b30392427fbde247a2c2f9397..de4548724acf52b225444f806c2392daaa3e2af6 100644 (file)
@@ -41,12 +41,12 @@ int main(int, char*[])
 
   // Use indirect iterator to print out numbers by accessing
   // them through the array of pointers.
-  std::cout << "indirectly printing out the numbers from 0 to " 
+  std::cout << "indirectly printing out the numbers from 0 to "
             << N << std::endl;
   std::copy(boost::make_indirect_iterator(pointers.begin()),
             boost::make_indirect_iterator(pointers.end()),
             std::ostream_iterator<int>(std::cout, " "));
   std::cout << std::endl;
-  
+
   return boost::exit_success;
 }