|
30 | 30 | // |
31 | 31 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
32 | 32 | // |
33 | | -// $Id:$ |
| 33 | +// $Id: long_int.h 151 2021-09-07 11:33:21Z ykalmykov $ |
34 | 34 | // |
35 | 35 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
36 | 36 |
|
@@ -59,7 +59,7 @@ class long_int_t : public long_uint_t<native_t, size> |
59 | 59 | //////////////////////////////////////////////////////////////////////////////////////////////// |
60 | 60 | // construction/destruction |
61 | 61 |
|
62 | | - constexpr long_int_t() noexcept; |
| 62 | + constexpr long_int_t() noexcept = default; |
63 | 63 | constexpr long_int_t(const long_int_t& that) noexcept = default; |
64 | 64 | constexpr long_int_t(long_int_t&& that) noexcept = default; |
65 | 65 | constexpr long_int_t(const long_uint_t<native_t, size>& that) noexcept; |
@@ -140,11 +140,6 @@ constexpr type_t muldiv(const type_t& value, const type_t& multiplier, const typ |
140 | 140 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
141 | 141 | // construction/destruction |
142 | 142 |
|
143 | | -template<typename native_t, uint_t size> |
144 | | -constexpr long_int_t<native_t, size>::long_int_t() noexcept |
145 | | -{ |
146 | | -} |
147 | | - |
148 | 143 | template<typename native_t, uint_t size> |
149 | 144 | constexpr long_int_t<native_t, size>::long_int_t(const long_uint_t<native_t, size>& that) noexcept |
150 | 145 | : long_uint_t<native_t, size>(that) |
|
0 commit comments