]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/serialization/test/test_set.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / serialization / test / test_set.cpp
index 51fef4891a8275946bb492a4d592b0a7b7c2a218..826f83a0a47098f9d0306fa56d80aad3759c81ee 100644 (file)
@@ -1,7 +1,7 @@
 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 // test_set.cpp
 
-// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 
+// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
 // (C) Copyright 2014 Jim Bell
 // Use, modification and distribution is subject to the Boost Software
 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
@@ -25,7 +25,7 @@ namespace std{
 
 #include <boost/detail/workaround.hpp>
 #if defined(BOOST_NO_STDC_NAMESPACE)
-namespace std{ 
+namespace std{
     using ::remove;
 }
 #endif
@@ -50,7 +50,7 @@ test_set(){
     aset.insert(A());
     aset.insert(A());
     const A * a_ptr = & * aset.begin();
-    {   
+    {
         test_ostream os(testfile, TEST_STREAM_FLAGS);
         test_oarchive oa(os, TEST_ARCHIVE_FLAGS);
         oa << boost::serialization::make_nvp("aset", aset);
@@ -106,6 +106,6 @@ test_multiset(){
 int test_main( int /* argc */, char* /* argv */[] ){
     test_set();
     test_multiset();
-    
+
     return EXIT_SUCCESS;
 }