]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/date_time/time_duration.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / date_time / time_duration.hpp
index 990218a71c98825e64589cb0ee2676b3777e36a6..0696eede30ff66c25e7fd7a2606f74890a874a69 100644 (file)
@@ -63,11 +63,6 @@ namespace date_time {
                   fractional_seconds_type frac_sec_in = 0) :
       ticks_(rep_type::to_tick_count(hours_in,minutes_in,seconds_in,frac_sec_in))
     {}
-    // copy constructor required for dividable<>
-    //! Construct from another time_duration (Copy constructor)
-    BOOST_CXX14_CONSTEXPR time_duration(const time_duration<T, rep_type>& other)
-      : ticks_(other.ticks_)
-    {}
     //! Construct from special_values
     BOOST_CXX14_CONSTEXPR time_duration(special_values sv) : ticks_(impl_type::from_special(sv))
     {}