]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/serialization/example/demo_gps.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / serialization / example / demo_gps.hpp
index 1830db3b8b3b430e538a84e7b5d80c93b4d63aed..5f39cc041401e7f8ea4cb6f7df5f9e31ce6a6405 100644 (file)
@@ -51,7 +51,7 @@ class gps_position
 public:
     // every serializable class needs a constructor
     gps_position(){};
-    gps_position(int _d, int _m, float _s) : 
+    gps_position(int _d, int _m, float _s) :
         degrees(_d), minutes(_m), seconds(_s)
     {}
 };
@@ -209,7 +209,7 @@ std::ostream & operator<<(std::ostream &os, const bus_route &br)
 //
 // Illustrates serialization of STL objects(pair) in a non-intrusive way.
 // See definition of operator<< <pair<F, S> >(ar, pair)
-// 
+//
 // illustrates nesting of serializable classes
 //
 // illustrates use of version number to automatically grandfather older