diff --git a/ClockReceiver/ClockReceiver.hpp b/ClockReceiver/ClockReceiver.hpp index 40e0968fb..de2c23345 100644 --- a/ClockReceiver/ClockReceiver.hpp +++ b/ClockReceiver/ClockReceiver.hpp @@ -176,7 +176,6 @@ class Cycles: public WrappedInt { public: forceinline constexpr Cycles(IntType l) noexcept : WrappedInt(l) {} forceinline constexpr Cycles() noexcept : WrappedInt() {} - forceinline constexpr Cycles(const Cycles &cycles) noexcept : WrappedInt(cycles.length_) {} private: friend WrappedInt; @@ -198,7 +197,6 @@ class HalfCycles: public WrappedInt { forceinline constexpr HalfCycles() noexcept : WrappedInt() {} forceinline constexpr HalfCycles(const Cycles &cycles) noexcept : WrappedInt(cycles.as_integral() * 2) {} - forceinline constexpr HalfCycles(const HalfCycles &half_cycles) noexcept : WrappedInt(half_cycles.length_) {} /// @returns The number of whole cycles completely covered by this span of half cycles. forceinline constexpr Cycles cycles() const {