]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/date_time/date_duration_types.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / date_time / date_duration_types.hpp
index 933f9746bf7e2ed09fc7c9bb55e941a640731aeb..4a9de596bd52b103c5558c8d8fa6aea8d8fa2b12 100644 (file)
@@ -128,7 +128,6 @@ namespace date_time {
         _m = _m - y.number_of_years() * 12;
         return *this;
       }
-
       //
       BOOST_CXX14_CONSTEXPR friend date_type operator+(const date_type& d, const months_type& m)
       {
@@ -148,7 +147,6 @@ namespace date_time {
         // get_neg_offset returns a negative duration, so we add
         return d += m.get_neg_offset(d);
       }
-        
     private:
       int_rep _m;
   };
@@ -240,7 +238,6 @@ namespace date_time {
       {
         return(months_type(_y * 12 - m.number_of_months()));
       }
-
       //
       BOOST_CXX14_CONSTEXPR friend date_type operator+(const date_type& d, const years_type& y)
       {
@@ -260,11 +257,9 @@ namespace date_time {
         // get_neg_offset returns a negative duration, so we add
         return d += y.get_neg_offset(d);
       }
-
     private:
       int_rep _y;
   };
-
 }} // namespace boost::date_time
 
 #endif // DATE_DURATION_TYPES_HPP___