Default copy constructor. */
| 141 | |
| 142 | /** Default copy constructor. */ |
| 143 | constexpr Span(const Span&) noexcept = default; |
| 144 | |
| 145 | /** Default assignment operator. */ |
| 146 | Span& operator=(const Span& other) noexcept = default; |
no test coverage detected